Skip to content

Commit

Permalink
Fix s6-overlay install
Browse files Browse the repository at this point in the history
  • Loading branch information
Trigus42 committed Jan 25, 2022
1 parent 261f4e1 commit 1dc5eeb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ RUN \
# Install s6-overlay
COPY ./build/s6-overlay-arch /tmp/s6-overlay-arch
RUN \
chmod +x /tmp/s6-overlay-arch; \
wget https://github.com/just-containers/s6-overlay/releases/download/${S6_OVERLAY_VERSION}/s6-overlay-$(/tmp/s6-overlay-arch).tar.gz -O /tmp/s6_overlay.tar.gz; \
tar xzf /tmp/s6_overlay.tar.gz -C /; \
tar -xf /tmp/s6_overlay.tar.gz -C /; \
rm -r /tmp/*

COPY rootfs /
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile.compile
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ RUN \
# Install s6-overlay
COPY ./build/s6-overlay-arch /tmp/s6-overlay-arch
RUN \
chmod +x /tmp/s6-overlay-arch; \
wget https://github.com/just-containers/s6-overlay/releases/download/${S6_OVERLAY_VERSION}/s6-overlay-$(/tmp/s6-overlay-arch).tar.gz -O /tmp/s6_overlay.tar.gz; \
tar xzf /tmp/s6_overlay.tar.gz -C /; \
tar -xf /tmp/s6_overlay.tar.gz -C /; \
rm -r /tmp/*

COPY rootfs /
Expand Down

0 comments on commit 1dc5eeb

Please sign in to comment.