Update Dockerfile

This commit is contained in:
2025-12-07 16:15:12 +01:00
committed by GitHub
parent 67aefca507
commit 185d4fb008

View File

@@ -0,0 +1,7 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3001
CMD ["node", "server.js"]