Files
ava/Dockerfile
2022-12-23 18:33:15 +01:00

13 lines
120 B
Docker

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