Update Dockerfile

This commit is contained in:
2025-12-07 01:48:21 +01:00
committed by GitHub
parent a062c788e9
commit 074f10273d

View File

@@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
EXPOSE 3001
CMD ["npm", "start"]