Update Dockerfile

This commit is contained in:
2025-12-07 16:31:13 +01:00
committed by GitHub
parent bf790ef64b
commit 2566b406e1

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"]