1
0
Fork 0
mirror of https://github.com/yavook/kiwi-nextcloud.git synced 2024-12-03 11:43:00 +00:00

Upgrade s6 overlay 3.0.0.2-2 -> 3.1.5.0

This commit is contained in:
Jörn-Michael Miehe 2023-08-09 22:42:25 +02:00
parent 4ccf906abb
commit d58c9f6197

View file

@ -7,20 +7,21 @@ LABEL maintainer="jmm@yavook.de"
# https://github.com/just-containers/s6-overlay
#########
ARG S6_OVERLAY_VERSION=3.0.0.2-2
ARG S6_OVERLAY_VERSION=3.1.5.0
ENV PATH=/command:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN set -ex; \
\
curl \
--proto '=https' --tlsv1.2 -sSLf \
"https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch-${S6_OVERLAY_VERSION}.tar.xz" \
"https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz" \
| tar -JxpC /; \
curl \
--proto '=https' --tlsv1.2 -sSLf \
"https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-x86_64-${S6_OVERLAY_VERSION}.tar.xz" \
"https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-x86_64.tar.xz" \
| tar -JxpC /; \
\
mkdir -p /etc/s6-overlay/config; \
echo "${PATH}" > /etc/s6-overlay/config/global_path;
ENTRYPOINT [ "/init" ]