Files
cli/templates/extra/Dockerfile.JS.sern
2022-09-13 10:05:02 +05:30

11 lines
102 B
Docker

FROM node:latest
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN node src/index.js