Files
Greg Mierzwinski e178cb54dd Bug 1944221 - Undo remove of .cache volume from condprof docker image. r=ahal
This patch undoes the removal of the `.cache` volume from the condprof docker image. Currently, there is something related to `dconf` that depends on that volume being accessible.

Differential Revision: https://phabricator.services.mozilla.com/D239172
2025-02-25 16:05:34 +00:00

16 lines
355 B
Docker

FROM $DOCKER_IMAGE_PARENT
MAINTAINER Gregory Mierzwinski <gmierzwinski@mozilla.com>
VOLUME /builds/worker/.cache
VOLUME /builds/worker/checkouts
VOLUME /builds/worker/tooltool-cache
VOLUME /builds/worker/workspace
RUN apt-get -y update && \
apt-get install -y python3.7 \
python3.7-venv \
python3.7-dev
CMD ["/bin/bash", "--login"]