Skip to content

Commit

Permalink
Add optional s6-overlay symlink packages
Browse files Browse the repository at this point in the history
These packages create symlinks to various s6-overlay
tools in /usr/bin for convenience.

See: https://github.com/just-containers/s6-overlay?tab=readme-ov-file#releases

Change-type: minor
Signed-off-by: Kyle Harding <kyle@balena.io>
  • Loading branch information
klutchell committed Jan 14, 2025
1 parent 4450ee1 commit d266242
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ runs:
python3 --version
pwsh -Version
runc --version
s6-rc help
socat -V
yq --version
zstd --version
14 changes: 14 additions & 0 deletions runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,24 @@ RUN eget just-containers/s6-overlay \
--all --file "*" --to "./" \
--tag "${S6_OVERLAY_VERSION}"

# hadolint ignore=DL3059
RUN eget just-containers/s6-overlay \
--asset "s6-overlay-noarch.tar.xz" \
--all --file "*" --to "./" \
--tag "${S6_OVERLAY_VERSION}"

# hadolint ignore=DL3059
RUN eget just-containers/s6-overlay \
--asset "s6-overlay-symlinks-noarch.tar.xz" \
--all --file "*" --to "./" \
--tag "${S6_OVERLAY_VERSION}"

# hadolint ignore=DL3059
RUN eget just-containers/s6-overlay \
--asset "s6-overlay-symlinks-arch.tar.xz" \
--all --file "*" --to "./" \
--tag "${S6_OVERLAY_VERSION}"

####################################################################################################

FROM eget-build AS go-github-apps
Expand Down Expand Up @@ -365,6 +378,7 @@ RUN aws --version && \
pwsh -Version && \
python3 --version && \
runc --version && \
s6-rc help && \
socat -V && \
yq --version && \
zstd --version
Expand Down

0 comments on commit d266242

Please sign in to comment.