FROM node:10.16.3-alpine as node COPY . /shlink-web-client RUN cd /shlink-web-client && npm install && npm run build FROM nginx:1.17.3-alpine LABEL maintainer="Alejandro Celaya " 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