2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
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}"]