This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
api/Dockerfile
2021-10-24 04:06:16 +02:00

12 lines
160 B
Docker

FROM node:14.16.1
RUN npm install --global npm@7
WORKDIR /api
COPY ./package*.json ./
RUN npm install
COPY ./ ./
RUN npm run build
CMD ["npm", "run", "dev"]