From 9621db9e79bb7b6aba6d4ca672e2582a40191a2d Mon Sep 17 00:00:00 2001 From: ngosang Date: Sat, 29 Jul 2023 23:35:21 +0200 Subject: [PATCH] Update base Docker image to Alpine 3.18 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 862be99..e423a40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.19-alpine3.17 AS builder +FROM golang:1.19-alpine3.18 AS builder ENV RESTIC_VERSION 0.15.1 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.11-alpine3.17 +FROM python:3.11-alpine3.18 RUN apk add --no-cache --update openssh tzdata