Skip to content

Commit

Permalink
fix: resolve apt-get install failures
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Klick <[email protected]>
  • Loading branch information
nathanklick committed Aug 2, 2024
1 parent 5dc7085 commit 7c991eb
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,16 @@ COPY hooks /etc/arc/hooks/
#########################################
## Begin Tool Cache Customization ##
#########################################
COPY --link --chown=${RUNNER_UID}:${DOCKER_GID} tools ${RUNNER_TOOL_CACHE}
COPY --link --chown=1000:1001 tools /opt/hostedtoolcache
#########################################
## End Tool Cache Customization ##
#########################################

#########################################
## Begin OS Software Customizations ##
#########################################
RUN apt-get install -y --no-install-recommends \
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
make \
wget \
gnupg2 \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,16 @@ COPY hooks /etc/arc/hooks/
#########################################
## Begin Tool Cache Customization ##
#########################################
COPY --link --chown=${RUNNER_UID}:${DOCKER_GID} tools ${RUNNER_TOOL_CACHE}
COPY --link --chown=1000:1001 tools /opt/hostedtoolcache
#########################################
## End Tool Cache Customization ##
#########################################

#########################################
## Begin OS Software Customizations ##
#########################################
RUN apt-get install -y --no-install-recommends \
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
make \
wget \
gnupg2 \
Expand Down
5 changes: 3 additions & 2 deletions legacy/runner/actions-runner-dind.ubuntu-20.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,16 @@ COPY hooks /etc/arc/hooks/
#########################################
## Begin Tool Cache Customization ##
#########################################
COPY --link --chown=${RUNNER_UID}:${DOCKER_GID} tools ${RUNNER_TOOL_CACHE}
COPY --link --chown=1000:1001 tools /opt/hostedtoolcache
#########################################
## End Tool Cache Customization ##
#########################################

#########################################
## Begin OS Software Customizations ##
#########################################
RUN apt-get install -y --no-install-recommends \
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
make \
wget \
gnupg2 \
Expand Down
5 changes: 3 additions & 2 deletions legacy/runner/actions-runner-dind.ubuntu-22.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,16 @@ COPY hooks /etc/arc/hooks/
#########################################
## Begin Tool Cache Customization ##
#########################################
COPY --link --chown=${RUNNER_UID}:${DOCKER_GID} tools ${RUNNER_TOOL_CACHE}
COPY --link --chown=1000:1001 tools /opt/hostedtoolcache
#########################################
## End Tool Cache Customization ##
#########################################

#########################################
## Begin OS Software Customizations ##
#########################################
RUN apt-get install -y --no-install-recommends \
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
make \
wget \
gnupg2 \
Expand Down
5 changes: 3 additions & 2 deletions legacy/runner/actions-runner.ubuntu-20.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,16 @@ COPY hooks /etc/arc/hooks/
#########################################
## Begin Tool Cache Customization ##
#########################################
COPY --link --chown=${RUNNER_UID}:${DOCKER_GID} tools ${RUNNER_TOOL_CACHE}
COPY --link --chown=1000:1001 tools /opt/hostedtoolcache
#########################################
## End Tool Cache Customization ##
#########################################

#########################################
## Begin OS Software Customizations ##
#########################################
RUN apt-get install -y --no-install-recommends \
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
make \
wget \
gnupg2 \
Expand Down
5 changes: 3 additions & 2 deletions legacy/runner/actions-runner.ubuntu-22.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,16 @@ COPY hooks /etc/arc/hooks/
#########################################
## Begin Tool Cache Customization ##
#########################################
COPY --link --chown=${RUNNER_UID}:${DOCKER_GID} tools ${RUNNER_TOOL_CACHE}
COPY --link --chown=1000:1001 tools /opt/hostedtoolcache
#########################################
## End Tool Cache Customization ##
#########################################

#########################################
## Begin OS Software Customizations ##
#########################################
RUN apt-get install -y --no-install-recommends \
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
make \
wget \
gnupg2 \
Expand Down

0 comments on commit 7c991eb

Please sign in to comment.