dockerfile

This commit is contained in:
2026-02-16 16:27:59 +00:00
commit 2ea3eddfc6

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json .
RUN npm install --production
COPY src/ ./src/
EXPOSE 3000
USER node
CMD ["node", "src/index.js"]