From 929ff960d1f7cc0b8841389e59211d6fa1e456d3 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sun, 4 Jan 2026 21:19:21 +0000 Subject: [PATCH] fix(Dockerfile): specify curl version to ensure compatibility --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea53fe2..cc5b4ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ LABEL maintainer="Luke Tainton " LABEL org.opencontainers.image.source="https://git.tainton.uk/repos/documize-docker" ARG DOCUMIZE_VERSION=v5.14.0 ENV DOCUMIZEPORT=5001 -RUN apk add --no-cache curl +RUN apk add --no-cache curl=8.17.0-r0 WORKDIR /opt RUN curl -L -o documize "https://github.com/documize/community/releases/download/${DOCUMIZE_VERSION}/documize-community-linux-amd64" && chmod 755 documize ENTRYPOINT ["./documize -port ${DOCUMIZEPORT}"]