mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-03 06:47:29 +03:00
Merge pull request #1047 from jinnatar/dockerfile_chown_servers.json
Ensure the Docker nginx user can write servers.json.
This commit is contained in:
commit
92b12e708c
1 changed files with 7 additions and 1 deletions
|
@ -9,7 +9,13 @@ ARG UID=101
|
|||
LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>"
|
||||
USER root
|
||||
RUN rm -r /usr/share/nginx/html && rm /etc/nginx/conf.d/default.conf
|
||||
USER $UID
|
||||
COPY config/docker/nginx.conf /etc/nginx/conf.d/default.conf
|
||||
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
|
||||
|
||||
# This is required by 30-shlink-servers-json.sh to be writable for UID
|
||||
RUN echo '[]' > /usr/share/nginx/html/servers.json \
|
||||
&& chown $UID:0 /usr/share/nginx/html/servers.json
|
||||
|
||||
# Switch to non-privileged UID as the last step
|
||||
USER $UID
|
||||
|
|
Loading…
Reference in a new issue