Skip to content

Commit

Permalink
fix - docker context
Browse files Browse the repository at this point in the history
  • Loading branch information
chaddyc committed Dec 15, 2024
1 parent 6cc4b63 commit b32698e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ WORKDIR /runner
# Download the latest GitHub Actions Runner based on architecture
RUN LATEST_RUNNER_VERSION=$(curl -s https://api.github.com/repos/actions/runner/releases/latest | jq -r .tag_name) && \
RUNNER_VERSION_NUMBER=$(echo "$LATEST_RUNNER_VERSION" | sed 's/^v//') && \
curl -L -o actions-runner.tar.gz https://github.com/actions/runner/releases/download/$LATEST_RUNNER_VERSION/actions-runner-linux-${RUNNER_ARCH}-$RUNNER_VERSION_NUMBER.tar.gz && \
curl -L -o actions-runner.tar.gz https://github.com/actions/runner/releases/download/$LATEST_RUNNER_VERSION/actions-runner-linux-x64-$RUNNER_VERSION_NUMBER.tar.gz && \
tar xzf actions-runner.tar.gz && \
rm -f actions-runner.tar.gz

Expand Down

0 comments on commit b32698e

Please sign in to comment.