This commit is contained in:
MrTyton 2022-03-25 21:31:03 -04:00
parent b00c701b5f
commit 0e710f6ecc
2 changed files with 17 additions and 2 deletions

View File

@ -58,6 +58,21 @@ RUN echo "**** cleanup ****" && \
/tmp/* \ /tmp/* \
/var/lib/apt/lists/* \ /var/lib/apt/lists/* \
/var/tmp/* /var/tmp/*
RUN echo "**** s6 omsta;; ****" && \
set -ex && \
ARCH=`uname -m` && \
if [ "$ARCH" = "x86_64" ]; then \
s6_package="s6-overlay-amd64.tar.gz" ; \
elif [ "$ARCH" = "aarch64" ]; then \
s6_package="s6-overlay-aarch64.tar.gz" ; \
else \
echo "unknown arch: ${ARCH}" && \
exit 1 ; \
fi && \
wget -P /tmp/ https://github.com/just-containers/s6-overlay/releases/download/v2.2.0.3/${s6_package} && \
tar -xzf /tmp/${s6_package} -C / && \
rm -rf /tmp/*
RUN echo *** Install Packages *** && \ RUN echo *** Install Packages *** && \
set -x && \ set -x && \
@ -76,4 +91,4 @@ VOLUME /config
WORKDIR /config WORKDIR /config
ENTRYPOINT ["/sbin/init"] ENTRYPOINT ["/init"]

View File

@ -1 +1 @@
2022.03.25-17 2022.03.25-18