Files
node-js-test/Dockerfile
T
admin 0408455672
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
Add Dockerfile
2026-05-20 04:48:59 +00:00

7 lines
118 B
Docker

FROM node:16-alpine
WORKDIR /app
COPY package*.json .
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "run", "start"]