From fdc77dc4ffb3d60d3f3b5074cbfec3497ef9f09b Mon Sep 17 00:00:00 2001 From: Avi Deitcher Date: Thu, 4 Apr 2024 11:16:44 +0300 Subject: [PATCH] bump all container image bases to alpine:3.19 Signed-off-by: Avi Deitcher --- Dockerfile | 2 +- test/Dockerfile | 2 +- test/ctr/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 05ac8966..e039edf5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /src/mysql-backup RUN mkdir /out && go build -o /out/mysql-backup . # we would do from scratch, but we need basic utilities in order to support pre/post scripts -FROM alpine:3.17 +FROM alpine:3.19 LABEL org.opencontainers.image.authors="https://github.com/databacker" # set us up to run as non-root user diff --git a/test/Dockerfile b/test/Dockerfile index aa3a555d..e6d0b170 100644 --- a/test/Dockerfile +++ b/test/Dockerfile @@ -3,7 +3,7 @@ FROM mysql:8.0 ## MYSQL -FROM alpine:3.17 +FROM alpine:3.19 ## SAMBA diff --git a/test/ctr/Dockerfile b/test/ctr/Dockerfile index b5933bd9..deb5b28d 100644 --- a/test/ctr/Dockerfile +++ b/test/ctr/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.17 +FROM alpine:3.19 # smb port EXPOSE 445