shlink-web-client/Dockerfile

13 lines
526 B
Text
Raw Normal View History

2023-09-23 13:04:58 +03:00
FROM node:20.7-alpine as node
COPY . /shlink-web-client
ARG VERSION="latest"
ENV VERSION ${VERSION}
2023-08-12 11:26:42 +03:00
RUN cd /shlink-web-client && npm ci && npm run build
FROM nginx:1.25-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
2021-06-13 10:51:10 +03:00
COPY scripts/docker/servers_from_env.sh /docker-entrypoint.d/30-shlink-servers-json.sh
COPY --from=node /shlink-web-client/build /usr/share/nginx/html