2022-05-25 19:13:32 +03:00
|
|
|
FROM node:16.15-alpine as node
|
2019-03-03 12:12:59 +03:00
|
|
|
COPY . /shlink-web-client
|
2020-03-05 15:37:07 +03:00
|
|
|
ARG VERSION="latest"
|
|
|
|
ENV VERSION ${VERSION}
|
2022-07-17 12:50:26 +03:00
|
|
|
RUN cd /shlink-web-client && npm ci && NODE_ENV=production npm run build
|
2019-03-03 12:12:59 +03:00
|
|
|
|
2021-06-13 10:55:07 +03:00
|
|
|
FROM nginx:1.21-alpine
|
2019-01-07 11:41:54 +03:00
|
|
|
LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>"
|
2019-09-22 12:55:21 +03: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
|
2021-06-13 10:51:10 +03:00
|
|
|
COPY scripts/docker/servers_from_env.sh /docker-entrypoint.d/30-shlink-servers-json.sh
|
2019-03-03 12:12:59 +03:00
|
|
|
COPY --from=node /shlink-web-client/build /usr/share/nginx/html
|