Files
bothoven/Dockerfile
2024-04-28 19:58:01 +02:00

10 lines
131 B
Docker

FROM node:lts-alpine
WORKDIR /usr/src/app
# 👌
COPY package*.json ./
RUN npm install
COPY index.js ./
CMD ["node", "index.js"]