Add Dockerfile

This commit is contained in:
2025-06-19 19:31:34 +02:00
parent 820d9ee806
commit ca5604b0cd

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
ARG PORT=3000
ENV PORT=$PORT
CMD ["node", "index.js"]