From 5a1d18d26ebcee7051c71f0d1377af3809ce331b Mon Sep 17 00:00:00 2001 From: emeric Date: Sun, 27 Aug 2023 15:52:29 +0200 Subject: [PATCH] Upgraded alpine for docker images --- Dockerfile-build-alpine | 2 +- Dockerfile-release | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile-build-alpine b/Dockerfile-build-alpine index ed896dfa..aef34b78 100644 --- a/Dockerfile-build-alpine +++ b/Dockerfile-build-alpine @@ -1,5 +1,5 @@ FROM --platform=$BUILDPLATFORM tonistiigi/xx AS xx -FROM --platform=$BUILDPLATFORM alpine:3.17 +FROM --platform=$BUILDPLATFORM alpine:3.18 ARG BUILD_PACKAGES="\ clang \ diff --git a/Dockerfile-release b/Dockerfile-release index 77d6b2af..918c5499 100644 --- a/Dockerfile-release +++ b/Dockerfile-release @@ -1,4 +1,4 @@ -FROM alpine:3.17 AS build +FROM alpine:3.18 AS build WORKDIR /tmp/workdir @@ -78,7 +78,7 @@ RUN \ make distclean # WT -ARG WT_VERSION=4.9.1 +ARG WT_VERSION=4.10.0 RUN \ DIR=/tmp/wt && mkdir -p ${DIR} && cd ${DIR} && \ curl -sLO https://github.com/emweb/wt/archive/${WT_VERSION}.tar.gz && \ @@ -133,7 +133,7 @@ RUN \ rm -rf /tmp/fakeroot/share/Wt/resources/themes ## Release Stage -FROM alpine:3.17 AS release +FROM alpine:3.18 AS release LABEL maintainer="Emeric Poupon " ARG RUNTIME_PACKAGES=" \ @@ -144,7 +144,7 @@ ARG RUNTIME_PACKAGES=" \ libogg \ opus \ libvorbis \ - lame \ + lame-libs \ zlib \ boost-filesystem \ boost-program_options \