Update Dockerfile

This commit is contained in:
2025-12-07 20:31:18 +01:00
committed by GitHub
parent b7d90b1902
commit 2f4ba7f4b5

View File

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