forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D65323 --HG-- rename : taskcluster/ci/pipfile-update/kind.yml => taskcluster/ci/python-dependency-update/kind.yml rename : taskcluster/docker/pipfile-updates/Dockerfile => taskcluster/docker/python-dependency-update/Dockerfile rename : taskcluster/docker/pipfile-updates/README.md => taskcluster/docker/python-dependency-update/README.md rename : taskcluster/docker/pipfile-updates/runme.sh => taskcluster/docker/python-dependency-update/runme.sh rename : taskcluster/docker/pipfile-updates/scripts/update_pipfiles.sh => taskcluster/docker/python-dependency-update/scripts/update_pipfiles.sh rename : taskcluster/docker/pipfile-updates/setup.sh => taskcluster/docker/python-dependency-update/setup.sh rename : taskcluster/taskgraph/transforms/pipfile_update.py => taskcluster/taskgraph/transforms/python_update.py extra : moz-landing-system : lando
33 lines
1 KiB
Docker
33 lines
1 KiB
Docker
FROM ubuntu:bionic
|
|
MAINTAINER Ben Hearsum <bhearsum@mozilla.com>
|
|
|
|
# Required software
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
# %include python/mozbuild/mozbuild/action/tooltool.py
|
|
ADD topsrcdir/python/mozbuild/mozbuild/action/tooltool.py /setup/tooltool.py
|
|
|
|
# %include testing/mozharness/external_tools/robustcheckout.py
|
|
ADD topsrcdir/testing/mozharness/external_tools/robustcheckout.py /usr/local/mercurial/robustcheckout.py
|
|
|
|
# %include taskcluster/docker/recipes/hgrc
|
|
COPY topsrcdir/taskcluster/docker/recipes/hgrc /etc/mercurial/hgrc.d/mozilla.rc
|
|
|
|
# %include taskcluster/docker/recipes/install-mercurial.sh
|
|
ADD topsrcdir/taskcluster/docker/recipes/install-mercurial.sh /setup/install-mercurial.sh
|
|
|
|
ADD setup.sh /setup/setup.sh
|
|
|
|
RUN cd /setup && ./setup.sh
|
|
|
|
COPY runme.sh /
|
|
COPY scripts/* /home/worker/scripts/
|
|
|
|
ENV HOME /home/worker
|
|
ENV SHELL /bin/bash
|
|
ENV USER worker
|
|
ENV LOGNAME worker
|
|
ENV LC_ALL C.UTF-8
|
|
ENV LANG C.UTF-8
|
|
|
|
CMD ["/runme.sh"]
|