From d7078d16256709a4de6dd4c22a5574af3cf9146c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Van=C3=AD=C4=8Dek?= Date: Mon, 16 Jan 2023 10:37:16 +0100 Subject: [PATCH] Switch to 3.17.0 and fix entrypoint.sh permission. --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cc5be2f..4799a62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ #FROM alpine:3.15.0 -FROM alpine:edge +FROM alpine:3.17.0 +#FROM alpine:edge LABEL maintainer="Adrien Ferrand " @@ -52,6 +53,8 @@ COPY files/auth-ldap.conf /etc/lighttpd/auth-ldap.conf COPY files/entrypoint.sh /entrypoint.sh COPY files/supervisord.conf /etc/supervisord.conf +RUN chmod +x /entrypoint.sh + EXPOSE 8080 WORKDIR /home/backuppc