Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Fixed tar
Browse files Browse the repository at this point in the history
  • Loading branch information
djthorpe committed Jan 9, 2024
1 parent fd288ac commit 82cb58c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile-bookworm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /

RUN DOWNLOAD_URL="https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-linux-$(echo ${RUNNER_ARCH} | sed -e 's/x64/amd64/g')-${RUNNER_VERSION}.tar.gz" \
&& cd /home/docker && mkdir actions-runner && cd actions-runner \
&& curl -O -L ${DOWNLOAD_URL} | tar xzf -
&& curl -s -L ${DOWNLOAD_URL} | tar xzf -

# install some additional dependencies
RUN chown -R docker ~docker && /home/docker/actions-runner/bin/installdependencies.sh
Expand Down

0 comments on commit 82cb58c

Please sign in to comment.