2023-09-28 22:38:30 +00:00
|
|
|
FROM alpine:3.18@sha256:eece025e432126ce23f223450a0326fbebde39cdf496a85d8c016293fc851978
|
2019-09-28 17:25:17 +00:00
|
|
|
|
2020-12-20 21:47:43 +00:00
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
2023-09-23 12:22:04 +00:00
|
|
|
LABEL org.opencontainers.image.title="nginx-s3"
|
|
|
|
LABEL org.opencontainers.image.url="https://gitea.rknet.org/docker/nginx-s3"
|
|
|
|
LABEL org.opencontainers.image.source="https://gitea.rknet.org/docker/nginx-s3"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/nginx-s3"
|
2019-09-28 17:25:17 +00:00
|
|
|
|
2023-01-15 16:08:31 +00:00
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETVARIANT
|
|
|
|
|
2020-10-18 20:35:49 +00:00
|
|
|
ARG GOMPLATE_VERSION
|
2021-10-09 20:10:58 +00:00
|
|
|
ARG CONTAINER_LIBRARY
|
2020-10-18 20:35:49 +00:00
|
|
|
|
|
|
|
# renovate: datasource=github-releases depName=hairyhenderson/gomplate
|
2023-04-18 01:36:38 +00:00
|
|
|
ENV GOMPLATE_VERSION="${GOMPLATE_VERSION:-v3.11.5}"
|
2021-10-09 20:10:58 +00:00
|
|
|
# renovate: datasource=git-tags depName=https://gitea.rknet.org/docker/container-library
|
|
|
|
ENV CONTAINER_LIBRARY="${CONTAINER_LIBRARY:-v0.1.3}"
|
2020-10-18 20:35:49 +00:00
|
|
|
|
2023-09-23 12:17:09 +00:00
|
|
|
RUN addgroup -g 1001 -S nginx && \
|
|
|
|
adduser -S -D -H -u 1001 -h /var/www -s /sbin/nologin -G nginx -g nginx nginx && \
|
2019-09-28 17:25:17 +00:00
|
|
|
apk --update add --virtual .build-deps curl && \
|
2023-09-23 12:17:09 +00:00
|
|
|
apk --update --no-cache add inotify-tools ca-certificates && \
|
|
|
|
apk --update --no-cache add openresty --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing/ && \
|
2019-09-28 17:25:17 +00:00
|
|
|
rm -rf /etc/nginx/conf.d && \
|
2022-06-21 13:08:55 +00:00
|
|
|
curl -SsfL "https://gitea.rknet.org/docker/container-library/releases/download/${CONTAINER_LIBRARY}/container-library.tar.gz" | tar xz -C / && \
|
2023-01-15 16:08:31 +00:00
|
|
|
curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_${TARGETOS}-${TARGETARCH}${TARGETVARIANT}" && \
|
2020-02-04 09:56:15 +00:00
|
|
|
chmod 755 /usr/local/bin/gomplate && \
|
2019-09-28 17:25:17 +00:00
|
|
|
apk del .build-deps && \
|
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /tmp/*
|
|
|
|
|
|
|
|
ADD overlay/ /
|
|
|
|
|
2023-09-24 13:12:22 +00:00
|
|
|
RUN mkdir -p /var/www /etc/nginx-s3 /etc/nginx/conf.d /var/tmp/nginx /var/cache/nginx && \
|
|
|
|
touch /etc/nginx/conf.d/vhosts.conf && \
|
2023-09-24 22:35:09 +00:00
|
|
|
chown -R nginx /var/tmp/nginx /var/cache/nginx && \
|
2023-09-23 12:17:09 +00:00
|
|
|
chown -R nginx:nginx /var/www && \
|
|
|
|
chown -R root:nginx /etc/nginx /etc/nginx/conf.d && \
|
|
|
|
chmod -R 640 /etc/nginx /etc/nginx/conf.d && \
|
2023-09-24 13:12:22 +00:00
|
|
|
chmod 750 /var/www /var/cache/nginx /etc/nginx-s3 /etc/nginx /etc/nginx/conf.d
|
2023-09-23 12:17:09 +00:00
|
|
|
|
2019-09-28 17:25:17 +00:00
|
|
|
EXPOSE 8080
|
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
|
2023-09-23 12:17:09 +00:00
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint", "server"]
|
|
|
|
WORKDIR /var/www
|
|
|
|
CMD []
|