first commit
This commit is contained in:
commit
c87f8d8383
7 changed files with 950 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM node:22-alpine AS builder
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
RUN npm ci --omit=dev
|
||||
|
||||
FROM gcr.io/distroless/nodejs22-debian12
|
||||
COPY --from=builder /app /app
|
||||
WORKDIR /app
|
||||
EXPOSE 5000
|
||||
CMD ["server.js"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue