Mitch has been inactive for ~2 years now and the listed maintainer should probably be somebody that can be reached. Differential Revision: https://phabricator.services.mozilla.com/D209032
12 lines
351 B
Docker
12 lines
351 B
Docker
FROM $DOCKER_IMAGE_PARENT
|
|
LABEL maintainer="Alex Hochheiden ahochheiden@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"]
|