diff --git a/Dockerfile-release b/Dockerfile-release index e94ceeb3..9e01ecbd 100644 --- a/Dockerfile-release +++ b/Dockerfile-release @@ -1,4 +1,4 @@ -FROM alpine:3.14 AS build +FROM alpine:3.17 AS build WORKDIR /tmp/workdir @@ -35,7 +35,7 @@ ARG BUILD_PACKAGES=" \ RUN apk add --no-cache --update ${BUILD_PACKAGES} # ffmpeg -ARG FFMPEG_VERSION=4.1.4 +ARG FFMPEG_VERSION=4.3.5 RUN \ DIR=/tmp/ffmpeg && mkdir -p ${DIR} && cd ${DIR} && \ curl -sLO https://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.bz2 && \ @@ -77,7 +77,7 @@ RUN \ make distclean # WT -ARG WT_VERSION=4.7.2 +ARG WT_VERSION=4.9.1 RUN \ DIR=/tmp/wt && mkdir -p ${DIR} && cd ${DIR} && \ curl -sLO https://github.com/emweb/wt/archive/${WT_VERSION}.tar.gz && \ @@ -90,7 +90,7 @@ RUN \ make install # STB -ARG STB_VERSION=b42009b3b9d4ca35bc703f5310eedc74f584be58 +ARG STB_VERSION=5736b15f7ea0ffb08dd38af21067c314d6a3aae9 RUN \ DIR=/tmp/stb && mkdir -p ${DIR} && cd ${DIR} && \ curl -sLO https://github.com/nothings/stb/archive/${STB_VERSION}.tar.gz && \ @@ -132,12 +132,12 @@ RUN \ rm -rf /tmp/fakeroot/share/Wt/resources/themes ## Release Stage -FROM alpine:3.14 AS release +FROM alpine:3.17 AS release LABEL maintainer="Emeric Poupon " ARG RUNTIME_PACKAGES=" \ - libssl1.1 \ - libcrypto1.1 \ + libssl3 \ + libcrypto3 \ openjpeg \ libpng \ libogg \