2024-10-19 07:57:04 +00:00
|
|
|
FROM node:23.0-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}
|
2023-08-12 10:26:42 +02:00
|
|
|
RUN cd /shlink-web-client && npm ci && npm run build
|
2019-03-03 10:12:59 +01:00
|
|
|
|
2024-06-07 06:57:01 +00:00
|
|
|
FROM nginxinc/nginx-unprivileged:1.27-alpine
|
2023-09-22 14:54:56 +02:00
|
|
|
ARG UID=101
|
2019-01-07 09:41:54 +01:00
|
|
|
LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>"
|
2024-01-30 18:07:44 +01:00
|
|
|
|
2023-09-22 14:54:56 +02:00
|
|
|
USER root
|
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
|
2021-06-13 09:51:10 +02:00
|
|
|
COPY scripts/docker/servers_from_env.sh /docker-entrypoint.d/30-shlink-servers-json.sh
|
2019-03-03 10:12:59 +01:00
|
|
|
COPY --from=node /shlink-web-client/build /usr/share/nginx/html
|
2024-01-29 23:04:28 +02:00
|
|
|
|
2024-01-30 13:10:13 +02:00
|
|
|
# This is required by 30-shlink-servers-json.sh to be writable for UID
|
|
|
|
RUN echo '[]' > /usr/share/nginx/html/servers.json \
|
2024-01-30 18:07:44 +01:00
|
|
|
&& chown $UID:0 /usr/share/nginx/html/servers.json
|
2024-01-29 23:04:28 +02:00
|
|
|
|
|
|
|
# Switch to non-privileged UID as the last step
|
|
|
|
USER $UID
|