toolbox/toolbox-web/Dockerfile
2020-08-05 21:49:25 -04:00

15 lines
179 B
Docker

FROM node:10 as build
COPY ./ /app
WORKDIR app
RUN npm install
RUN npm run build
FROM nginx:alpine
COPY --from=build /app/dist /webroot
COPY nginx.conf /etc/nginx/
EXPOSE 80