2019-09-28 17:25:17 +00:00
|
|
|
FROM alpine:3.10
|
|
|
|
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@geeklabor.de>" \
|
|
|
|
org.label-schema.name="Nginx" \
|
|
|
|
org.label-schema.vendor="Robert Kaussow" \
|
|
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
|
|
|
|
RUN addgroup -g 101 -S nginx && \
|
|
|
|
adduser -S -D -H -u 101 -h /var/www -s /sbin/nologin -G nginx -g nginx nginx && \
|
|
|
|
apk --update add --virtual .build-deps curl && \
|
|
|
|
apk --update --no-cache add nginx ca-certificates && \
|
|
|
|
rm -rf /var/www/localhost && \
|
|
|
|
rm -rf /etc/nginx/conf.d && \
|
|
|
|
curl -SsL -o /usr/local/bin/gomplate https://github.com/hairyhenderson/gomplate/releases/download/v3.5.0/gomplate_linux-amd64-slim && \
|
|
|
|
chmod 755 /usr/local/bin/gomplate && \
|
2019-10-02 08:44:48 +00:00
|
|
|
curl -SsL -o /usr/local/bin/supercronic https://github.com/aptible/supercronic/releases/download/v0.1.9/supercronic-linux-amd64 && \
|
|
|
|
chmod 755 /usr/local/bin/supercronic && \
|
2019-09-28 17:25:17 +00:00
|
|
|
touch /run/nginx.pid && \
|
|
|
|
chown nginx /run/nginx.pid && \
|
|
|
|
chown -R nginx /var/log/nginx && \
|
|
|
|
mkdir -p /var/cache/nginx && \
|
|
|
|
chown -R nginx /var/cache/nginx && \
|
2020-01-29 17:35:41 +00:00
|
|
|
chmod -R 750 /var/cache/nginx && \
|
2019-09-28 20:13:44 +00:00
|
|
|
chown -R nginx:nginx /var/www && \
|
2020-01-29 17:35:41 +00:00
|
|
|
chmod -R 750 /var/www && \
|
2019-09-28 17:25:17 +00:00
|
|
|
apk del .build-deps && \
|
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /tmp/*
|
|
|
|
|
|
|
|
ADD overlay/ /
|
|
|
|
|
|
|
|
EXPOSE 8080
|
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|