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.
website/Dockerfile

11 lines
173 B
Docker
Raw Normal View History

2021-10-24 05:19:39 +02:00
FROM node:14.16.1
RUN npm install --global npm@7
WORKDIR /website
COPY ./package*.json ./
RUN npm install
COPY ./ ./
CMD ["npm", "run", "dev", "--", "--port", "${PORT}"]