Dockerfile (531B)
1 FROM $DOCKER_IMAGE_PARENT 2 MAINTAINER Kartikaya Gupta <kgupta@mozilla.com> 3 4 VOLUME /builds/worker/checkouts 5 VOLUME /builds/worker/workspace 6 VOLUME /builds/worker/tooltool-cache 7 8 # %include gfx/wr/ci-scripts/docker-image/setup.sh 9 ADD topsrcdir/gfx/wr/ci-scripts/docker-image/setup.sh /tmp/wr-setup.sh 10 RUN /bin/bash /tmp/wr-setup.sh && rm /tmp/wr-setup.sh 11 12 # We need this to install cargo-vendor as part of the wrench-deps task 13 RUN apt-get install libssl-dev 14 15 # Set a default command useful for debugging 16 CMD ["/bin/bash", "--login"]