From 453fd671605fe8936ab6331eae658f52cc09c4f4 Mon Sep 17 00:00:00 2001 From: Eric Timmons Date: Sat, 2 Oct 2021 17:29:26 -0400 Subject: [PATCH] Bump to latest alpine version for Docker image and install git git is needed to generate the version file. --- tools-for-build/Dockerfile.static-executable-example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools-for-build/Dockerfile.static-executable-example b/tools-for-build/Dockerfile.static-executable-example index 0ec5e3f9e8..c33ad829b0 100644 --- a/tools-for-build/Dockerfile.static-executable-example +++ b/tools-for-build/Dockerfile.static-executable-example @@ -3,7 +3,7 @@ # libgmp, and libz staticially linked in. It is simple, however it demonstrates # that a static executable can run on ~any Linux system. -FROM clfoundation/sbcl:alpine3.13 +FROM clfoundation/sbcl:alpine3.14 COPY . /usr/local/src/sbcl/ @@ -21,7 +21,7 @@ RUN set -x \ *) echo "Unknown arch" >&2; exit 1;; \ esac \ && export SBCL_ARCH \ - && apk add --no-cache ca-certificates curl openssl make gcc musl-dev linux-headers gnupg patch zlib-dev zlib-static \ + && apk add --no-cache ca-certificates curl openssl make gcc musl-dev linux-headers gnupg patch zlib-dev zlib-static git \ # Remove the hardcoding of armv5 as target arch. Use the default provided # by the base image. Required when building for ARM on Alpine 3.12. && sed -i -e "s/CFLAGS += -marm -march=armv5/CFLAGS += -marm/" src/runtime/Config.arm-linux \