funkwhale/front/Dockerfile

11 wiersze
140 B
Docker
Czysty Zwykły widok Historia

FROM node:9
EXPOSE 8080
2018-01-08 21:47:14 +00:00
WORKDIR /app/
ADD package.json .
2018-03-01 23:14:55 +00:00
RUN yarn install
2018-01-08 21:47:14 +00:00
VOLUME ["/app/node_modules"]
COPY . .
2018-01-08 21:47:14 +00:00
CMD ["npm", "run", "dev"]