2020-05-17 10:04:05 +02:00
|
|
|
FROM node:12.16.3-alpine as node
|
2019-03-03 10:12:59 +01:00
|
|
|
COPY . /shlink-web-client
|
2020-03-05 13:37:07 +01:00
|
|
|
ARG VERSION="latest"
|
|
|
|
ENV VERSION ${VERSION}
|
2020-03-20 09:12:43 +01:00
|
|
|
RUN cd /shlink-web-client && \
|
2020-05-17 10:13:33 +02:00
|
|
|
npm install && npm run build -- ${VERSION} --no-dist
|
2019-03-03 10:12:59 +01:00
|
|
|
|
2020-05-17 10:04:05 +02:00
|
|
|
FROM nginx:1.17.10-alpine
|
2019-01-07 09:41:54 +01:00
|
|
|
LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>"
|
2019-09-22 11:55:21 +02:00
|
|
|
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
|
2019-03-03 10:12:59 +01:00
|
|
|
COPY --from=node /shlink-web-client/build /usr/share/nginx/html
|