1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 14:05:53 +02:00
.profile/Dockerfile
2021-04-18 01:56:23 +02:00

11 lines
169 B
Docker

FROM node:14.16.1
RUN npm install --global npm@7
WORKDIR /app
COPY ./package*.json ./
RUN npm install
COPY ./ ./
CMD ["npm", "run", "dev", "--", "--port", "${PORT}"]