From b41f440edb85f22b165119b3ae68c81122d32004 Mon Sep 17 00:00:00 2001 From: Sean T Allen Date: Wed, 30 Aug 2023 13:48:56 -0400 Subject: [PATCH] Update base image to Alpine 3.18 (#253) --- .release-notes/alpine318.md | 3 +++ Dockerfile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .release-notes/alpine318.md diff --git a/.release-notes/alpine318.md b/.release-notes/alpine318.md new file mode 100644 index 00000000..9e384005 --- /dev/null +++ b/.release-notes/alpine318.md @@ -0,0 +1,3 @@ +## Use Alpine 3.18 as our base image + +Previously we were using Alpine 3.16. This should have no impact on anyone unless they are using this image as the base image for another. diff --git a/Dockerfile b/Dockerfile index 2ecc0998..fd47a169 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ WORKDIR /src/corral RUN make arch=x86-64 static=true linker=bfd \ && make install -FROM alpine:3.16 +FROM alpine:3.18 COPY --from=build /usr/local/bin/corral /usr/local/bin/corral