all-in-one/Containers/docker-socket-proxy/Dockerfile
Simon L 75b2bd3c75 update all remaining images to alpine3.19
Signed-off-by: Simon L <szaimen@e.mail.de>
2024-01-29 16:48:55 +01:00

19 lines
428 B
Docker

FROM haproxy:2.9.0-alpine3.19
# hadolint ignore=DL3002
USER root
ENV NEXTCLOUD_HOST nextcloud-aio-nextcloud
RUN set -ex; \
apk add --no-cache \
ca-certificates \
tzdata \
bash \
bind-tools; \
chmod -R 777 /tmp
COPY --chmod=775 *.sh /
COPY --chmod=664 haproxy.cfg /haproxy.cfg
ENTRYPOINT ["/start.sh"]
HEALTHCHECK CMD /healthcheck.sh
LABEL com.centurylinklabs.watchtower.enable="false"