Files
controller-wisetopvue/Dockerfile
T
2020-08-13 16:57:28 +08:00

14 lines
142 B
Docker

FROM node:8
WORKDIR /app
COPY . /app
EXPOSE 8080
RUN npm install http-server -g
RUN npm install && npm run build
CMD http-server ./dist