Skip to content

Commit

Permalink
feat(runner): create /builds
Browse files Browse the repository at this point in the history
  • Loading branch information
keskiju committed Dec 3, 2024
1 parent 7a720ee commit e8f3a70
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
FROM ghcr.io/actions/actions-runner:latest

USER root

# Custom chart executes builds on /builds: https://github.com/sergelogvinov/helm-charts/blob/main/charts/github-actions-runner/templates/autoscalingrunnerset.yaml#L154
RUN mkdir -p /builds && chown runner:runner /builds

# Pull taito-cli:ci-gcp-dev on start
RUN sed -i '/updateFile="update.finished"/a docker pull ghcr.io/taitounited/taito-cli:ci-gcp-dev' /home/runner/run-helper.sh.template

USER runner

0 comments on commit e8f3a70

Please sign in to comment.