We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a58dea commit f869f31Copy full SHA for f869f31
1 file changed
debian-buster/Dockerfile
@@ -13,6 +13,7 @@ ENV RUNNER_REPOSITORY_URL=""
13
ENV RUNNER_LABELS=""
14
ENV RUNNER_ALLOW_RUNASROOT=true
15
ENV GITHUB_ACCESS_TOKEN=""
16
+ENV AGENT_TOOLSDIRECTORY=/opt/hostedtoolcache
17
18
# Labels.
19
LABEL maintainer="me@tcardonne.fr" \
@@ -61,7 +62,7 @@ RUN cd /tmp && \
61
62
make && \
63
make install
64
-RUN mkdir -p /home/runner
65
+RUN mkdir -p /home/runner ${AGENT_TOOLSDIRECTORY}
66
67
WORKDIR /home/runner
68
@@ -79,3 +80,4 @@ COPY entrypoint.sh /entrypoint.sh
79
80
RUN chmod +x /entrypoint.sh
81
ENTRYPOINT ["/entrypoint.sh"]
82
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
83
+
0 commit comments