From d58c9f619771b93ee120faa1e42fa12f6b9a4238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Wed, 9 Aug 2023 22:42:25 +0200 Subject: [PATCH] Upgrade s6 overlay 3.0.0.2-2 -> 3.1.5.0 --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8d9bf94..4884de1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" ]