Files
node-js-test/Dockerfile
T
admin 89fa269352
Docker Deployment / docker (push) Has been cancelled
Node.js CI Test / build (push) Failing after 7s
Update Dockerfile
2026-05-20 05:20:56 +00:00

7 lines
118 B
Docker

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