From 09fcdfd376dea54d2f28e8bdec4c5292f374a040 Mon Sep 17 00:00:00 2001 From: Sean T Allen Date: Wed, 30 Aug 2023 13:46:23 -0400 Subject: [PATCH] Update base image to Alpine 3.18 (#95) --- .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 0000000..9e38400 --- /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 e8e9de4..b62f43d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ WORKDIR /src/changelog-tool 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/changelog-tool /usr/local/bin/changelog-tool