Files
api/Dockerfile
2023-01-28 09:53:55 +01:00

13 lines
120 B
Docker

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