From 3ed24fa3d1492ae22493c4bfdd1c58dc96476c94 Mon Sep 17 00:00:00 2001 From: Dan Nixon Date: Wed, 29 Nov 2023 10:51:09 +0000 Subject: [PATCH] Update Alpine version in container images --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index d6f08a2..edeb186 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/rust:alpine3.15 as builder +FROM docker.io/library/rust:alpine3.17 as builder RUN apk add \ cmake \ @@ -12,7 +12,7 @@ RUN RUSTFLAGS=-Ctarget-feature=-crt-static cargo install \ --path . \ --root /usr/local -FROM docker.io/library/alpine:3.15 +FROM docker.io/library/alpine:3.17 RUN apk add \ libgcc \