fune/taskcluster/docker/sentry/Dockerfile
Mitchell Hentges 73182917b6 Bug 1698511: Publish revisions as mach releases in Sentry r=aki
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
2021-03-25 19:26:22 +00:00

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"]