зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
531 B
Docker
17 строки
531 B
Docker
FROM $DOCKER_IMAGE_PARENT
|
|
MAINTAINER Kartikaya Gupta <kgupta@mozilla.com>
|
|
|
|
VOLUME /builds/worker/checkouts
|
|
VOLUME /builds/worker/workspace
|
|
VOLUME /builds/worker/tooltool-cache
|
|
|
|
# %include gfx/wr/ci-scripts/docker-image/setup.sh
|
|
ADD topsrcdir/gfx/wr/ci-scripts/docker-image/setup.sh /tmp/wr-setup.sh
|
|
RUN /bin/bash /tmp/wr-setup.sh && rm /tmp/wr-setup.sh
|
|
|
|
# We need this to install cargo-vendor as part of the wrench-deps task
|
|
RUN apt-get install libssl-dev
|
|
|
|
# Set a default command useful for debugging
|
|
CMD ["/bin/bash", "--login"]
|