shlink-web-client/Dockerfile

10 lines
405 B
Text
Raw Normal View History

2019-10-05 20:26:06 +03:00
FROM node:12.11.0-alpine as node
COPY . /shlink-web-client
2019-04-14 22:58:10 +03:00
RUN cd /shlink-web-client && npm install && npm run build
2019-10-05 20:26:06 +03:00
FROM nginx:1.17.4-alpine
LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>"
RUN rm -r /usr/share/nginx/html && rm /etc/nginx/conf.d/default.conf
COPY config/docker/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=node /shlink-web-client/build /usr/share/nginx/html