From 72905b951fd35cb797308df9dd12b61ff3615d4b Mon Sep 17 00:00:00 2001 From: nrandon Date: Tue, 13 Jul 2021 20:13:00 +0100 Subject: [PATCH] Fix Alpine Docker lock to 3.13 (#1568) This issue relates to a build issue on the official docker build system where Alpine Linux 3.14 will not currently build so fix the Alpine version to 3.13. Make sure build and runtime image used in building the docker container are the same Alpine version to remove runtime issues. --- contrib/docker/Dockerfile-alpine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/docker/Dockerfile-alpine b/contrib/docker/Dockerfile-alpine index 9b4c569c..5ff4c4b6 100644 --- a/contrib/docker/Dockerfile-alpine +++ b/contrib/docker/Dockerfile-alpine @@ -12,7 +12,7 @@ RUN cd /usr/src/onedrive/ && \ make && \ make install -FROM alpine +FROM alpine:3.13 ENTRYPOINT ["/entrypoint.sh"] RUN apk add --no-cache \ bash libcurl libgcc shadow sqlite-libs ldc-runtime && \