Update to rootless nginx.

This commit is contained in:
2024-09-06 02:11:20 -07:00
parent 17b7098bcc
commit 7f08d3b380
3 changed files with 8 additions and 3 deletions

View File

@@ -4,12 +4,17 @@
## Used by automation. Can be built manually for testing.
##
####
FROM alpine:3.17
FROM alpine:3.20
RUN apk add nginx supervisor
RUN mkdir -p /var/www
RUN rm -rf /etc/nginx
COPY build /var/www/build
COPY .conf/nginx /etc/nginx
COPY .conf/supervisor/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN chown -R nobody /var/www
RUN chown -R nobody /etc/nginx
RUN chown -R nobody /var/www/build
RUN chown -R nobody /etc/supervisor/conf.d/
USER nobody
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
EXPOSE 80