Files
cli/templates/extra/Dockerfile.TS.sern

16 lines
185 B
Docker

FROM node:latest
WORKDIR /app
COPY package.json ./
RUN npm install
RUN npm install -D typescript
COPY . .
RUN tsc --build || npx -p typescript tsc --build
CMD node dist/index.js