Files
presentations/docker-example/demo/compose/back/Dockerfile
T
2024-09-18 09:24:08 +02:00

9 lines
139 B
Docker

FROM node:lts-alpine3.20
WORKDIR /app
COPY package.json ./
COPY package-lock.json ./
COPY index.js ./
RUN npm ci
CMD ["node", "index.js"]