Upgraded Alpine to v3.17 for official docker releases
This commit is contained in:
+7
-7
@@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.14 AS build
|
FROM alpine:3.17 AS build
|
||||||
|
|
||||||
WORKDIR /tmp/workdir
|
WORKDIR /tmp/workdir
|
||||||
|
|
||||||
@@ -35,7 +35,7 @@ ARG BUILD_PACKAGES=" \
|
|||||||
RUN apk add --no-cache --update ${BUILD_PACKAGES}
|
RUN apk add --no-cache --update ${BUILD_PACKAGES}
|
||||||
|
|
||||||
# ffmpeg
|
# ffmpeg
|
||||||
ARG FFMPEG_VERSION=4.1.4
|
ARG FFMPEG_VERSION=4.3.5
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/ffmpeg && mkdir -p ${DIR} && cd ${DIR} && \
|
DIR=/tmp/ffmpeg && mkdir -p ${DIR} && cd ${DIR} && \
|
||||||
curl -sLO https://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.bz2 && \
|
curl -sLO https://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.bz2 && \
|
||||||
@@ -77,7 +77,7 @@ RUN \
|
|||||||
make distclean
|
make distclean
|
||||||
|
|
||||||
# WT
|
# WT
|
||||||
ARG WT_VERSION=4.7.2
|
ARG WT_VERSION=4.9.1
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/wt && mkdir -p ${DIR} && cd ${DIR} && \
|
DIR=/tmp/wt && mkdir -p ${DIR} && cd ${DIR} && \
|
||||||
curl -sLO https://github.com/emweb/wt/archive/${WT_VERSION}.tar.gz && \
|
curl -sLO https://github.com/emweb/wt/archive/${WT_VERSION}.tar.gz && \
|
||||||
@@ -90,7 +90,7 @@ RUN \
|
|||||||
make install
|
make install
|
||||||
|
|
||||||
# STB
|
# STB
|
||||||
ARG STB_VERSION=b42009b3b9d4ca35bc703f5310eedc74f584be58
|
ARG STB_VERSION=5736b15f7ea0ffb08dd38af21067c314d6a3aae9
|
||||||
RUN \
|
RUN \
|
||||||
DIR=/tmp/stb && mkdir -p ${DIR} && cd ${DIR} && \
|
DIR=/tmp/stb && mkdir -p ${DIR} && cd ${DIR} && \
|
||||||
curl -sLO https://github.com/nothings/stb/archive/${STB_VERSION}.tar.gz && \
|
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
|
rm -rf /tmp/fakeroot/share/Wt/resources/themes
|
||||||
|
|
||||||
## Release Stage
|
## Release Stage
|
||||||
FROM alpine:3.14 AS release
|
FROM alpine:3.17 AS release
|
||||||
LABEL maintainer="Emeric Poupon <itmfr@yahoo.fr>"
|
LABEL maintainer="Emeric Poupon <itmfr@yahoo.fr>"
|
||||||
|
|
||||||
ARG RUNTIME_PACKAGES=" \
|
ARG RUNTIME_PACKAGES=" \
|
||||||
libssl1.1 \
|
libssl3 \
|
||||||
libcrypto1.1 \
|
libcrypto3 \
|
||||||
openjpeg \
|
openjpeg \
|
||||||
libpng \
|
libpng \
|
||||||
libogg \
|
libogg \
|
||||||
|
|||||||
Reference in New Issue
Block a user