Files
cli/templates/extra/Dockerfile.ts
2022-06-06 10:43:23 +02:00

14 lines
121 B
TypeScript

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