Update Dockerfile

This commit is contained in:
2025-12-09 14:16:12 +01:00
committed by GitHub
parent 25eafb1c6e
commit bd38d760d4

View File

@@ -0,0 +1,13 @@
FROM node:18-alpine
WORKDIR /app
# Set production environment
ENV NODE_ENV=production
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3001
CMD ["node", "server.js"]