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

13 lines
120 B
Docker

FROM node:latest
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN tsc --build
RUN node dist/index.js