Skip to content
Snippets Groups Projects
Unverified Commit b1aa6ff2 authored by Gabriel-Ladzaretti's avatar Gabriel-Ladzaretti Committed by GitHub
Browse files

fix: add an alternative cache dir to the docker image (#34284)

parent e78c78a2
No related branches found
No related tags found
No related merge requests found
......@@ -101,8 +101,9 @@ COPY --link --from=build --chown=root:root /usr/local/renovate/ /usr/local/renov
RUN ln -sf /usr/local/renovate/node /bin/node
# ensure default base and cache directories exist.
RUN mkdir -p /tmp/renovate/cache && \
chmod -R 777 /tmp/renovate
# /runner/cache is an alternative cache directory used in both Docker and microVMs.
RUN mkdir -p /tmp/renovate/cache /runner/cache && \
chmod -R 777 /tmp/renovate /runner
# test
RUN set -ex; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment