-
Notifications
You must be signed in to change notification settings - Fork 297
/
Dockerfile
59 lines (41 loc) · 2.11 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
ARG DIST=nginx:1.27.0
FROM $DIST
# Set by `docker buildx build`
ARG TARGETPLATFORM
# Delete sym links from nginx image, install logrotate
RUN rm /var/log/nginx/access.log && \
rm /var/log/nginx/error.log
WORKDIR /root
RUN apt-get clean && \
apt-get update && \
apt-get install -y python3 ruby cron iproute2 apache2-utils logrotate wget inotify-tools xz-utils && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Need this already now, but cannot copy remainder of fs_overlay yet
COPY ./fs_overlay/usr/bin/archname /usr/bin/
ENV S6_OVERLAY_VERSION=v3.2.0.0
ENV DOCKER_GEN_VERSION=0.14.0
ENV ACME_TINY_VERSION=5.0.1
RUN sh -c "wget -q https://github.com/just-containers/s6-overlay/releases/download/${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz -O /tmp/s6-overlay-noarch.tar.xz" && \
tar -xf /tmp/s6-overlay-noarch.tar.xz -C / && \
rm -rf /tmp/s6-overlay-noarch.tar.xz
RUN sh -c "wget -q https://github.com/just-containers/s6-overlay/releases/download/$S6_OVERLAY_VERSION/s6-overlay-`archname s6-overlay`.tar.xz -O /tmp/s6-overlay.tar.xz" && \
tar -xf /tmp/s6-overlay.tar.xz -C / && \
rm -rf /tmp/s6-overlay.tar.xz
RUN sh -c "wget -q https://github.com/nginx-proxy/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-`archname docker-gen`-$DOCKER_GEN_VERSION.tar.gz -O /tmp/docker-gen.tar.gz" && \
tar xzf /tmp/docker-gen.tar.gz -C /bin && \
rm -rf /tmp/docker-gen.tar.gz
# Bring the container down if stage fails
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
RUN wget -q https://raw.githubusercontent.com/diafygi/acme-tiny/$ACME_TINY_VERSION/acme_tiny.py -O /bin/acme_tiny
RUN rm /etc/nginx/conf.d/default.conf /etc/crontab
COPY ./fs_overlay /
RUN chmod a+x /bin/* && \
chmod 0644 /etc/logrotate.d/nginx && \
chmod a+x /etc/cont-init.d/* && \
chmod a+x /etc/services.d/**/*
VOLUME /var/lib/https-portal
VOLUME /var/log/nginx
# HEALTHCHECK --interval=5s --timeout=3s --start-period=10s --retries=3 CMD wget -q -O /dev/null http://localhost:80/ || exit 1
HEALTHCHECK --interval=5s --timeout=1s --start-period=2s --retries=20 CMD service nginx status || exit 1
ENTRYPOINT ["/init"]