forked from mirrors/gecko-dev
To identify regressions and existing exceptions in Sentry, we tag them with their mach release (the current base revision). To ensure that Sentry knows the correct order of revisions, we need to tell it about each one that lands in mozilla-central. Differential Revision: https://phabricator.services.mozilla.com/D109681
11 lines
349 B
Docker
11 lines
349 B
Docker
FROM $DOCKER_IMAGE_PARENT
|
|
LABEL maintainer="Mitchell Hentges mhentges@mozilla.com"
|
|
|
|
VOLUME /builds/worker/checkouts
|
|
|
|
ADD prepare.sh /setup/prepare-docker.sh
|
|
ADD submit_sentry_release.sh /usr/bin/submit_sentry_release.sh
|
|
RUN /bin/bash /setup/prepare-docker.sh && rm -R /setup
|
|
|
|
# Set a default command useful for debugging
|
|
CMD ["/bin/sh", "--login"]
|