From c882d9a9a90cadd4a0b9f2d3be14a4fafbe9a42f Mon Sep 17 00:00:00 2001 From: ngosang Date: Sat, 20 Jan 2024 15:14:47 +0100 Subject: [PATCH] Update base Docker image to Alpine 3.19 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c4ff6d9..3e73fc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20-alpine3.18 AS builder +FROM golang:1.20-alpine3.19 AS builder ENV RESTIC_VERSION 0.16.0 ENV CGO_ENABLED 0 @@ -12,7 +12,7 @@ RUN cd /tmp \ # flag -ldflags "-s -w" produces a smaller executable && go build -ldflags "-s -w" -v -o /tmp/restic ./cmd/restic -FROM python:3.12-alpine3.18 +FROM python:3.12-alpine3.19 RUN apk add --no-cache --update openssh tzdata