tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Dockerfile (880B)


      1 # This docker image only sets up packages on top of the original Ubuntu image.
      2 # Everything else is setup is a child docker image derived from this one, such
      3 # that changes to our scripts don't trigger the rebuild of this base image,
      4 # possibly leading to breakage. (See bug 1503756 and bug 1678451 for examples
      5 # of such recent breakages)
      6 FROM          $DOCKER_IMAGE_PARENT
      7 
      8 ARG ARCH=amd64
      9 ARG TASKCLUSTER_ROOT_URL
     10 ARG DOCKER_IMAGE_PACKAGES
     11 RUN /usr/local/sbin/setup_packages.sh $TASKCLUSTER_ROOT_URL $DOCKER_IMAGE_PACKAGES
     12 
     13 # %include taskcluster/docker/recipes/ubuntu2404-test-system-setup-base.sh
     14 ADD topsrcdir/taskcluster/docker/recipes/ubuntu2404-test-system-setup-base.sh /setup/system-setup.sh
     15 RUN     bash /setup/system-setup.sh $ARCH
     16 RUN /usr/local/sbin/clean_packages.sh $DOCKER_IMAGE_PACKAGES
     17 
     18 # Set a default command useful for debugging
     19 CMD ["/bin/bash", "--login"]