Add Dockerfile
Node.js CI Test / build (12.x) (push) Failing after 5s
Node.js CI Test / build (14.x) (push) Failing after 5s
Node.js CI Test / build (16.x) (push) Failing after 4s

This commit is contained in:
2026-05-20 04:48:59 +00:00
parent 688904e7bb
commit 0408455672
+7
View File
@@ -0,0 +1,7 @@
FROM node:16-alpine
WORKDIR /app
COPY package*.json .
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "run", "start"]