first commit

This commit is contained in:
srtk 2025-12-11 12:03:06 +05:30
commit c87f8d8383
7 changed files with 950 additions and 0 deletions

11
Dockerfile Normal file
View 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"]