tor-browser

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

Dockerfile (1027B)


      1 # This is an LTS! We should upgrade after the next LTS is released, unless
      2 # we've switched to the in-tree debian base images by then.
      3 FROM $DOCKER_IMAGE_PARENT
      4 
      5 MAINTAINER release@mozilla.com
      6 
      7 # We do want to install recommended packages.
      8 RUN sed -i /APT::Install-Recommends/d /etc/apt/apt.conf.d/99taskcluster
      9 
     10 RUN dpkg --add-architecture i386 && apt-get -q update \
     11    # p7zip-full is for extracting Windows and OS X packages
     12    # wget is for downloading update.xml, installers, and MARs
     13    # libgtk-3-0 is required to run the Firefox updater
     14    && apt-get -q --yes install p7zip-full wget libgtk-3-0 libgtk-3.0:i386 python3-cairo zip
     15 
     16 VOLUME /builds/worker/checkouts
     17 
     18 RUN mkdir /build
     19 ADD system-setup.sh /tmp/system-setup.sh
     20 RUN bash /tmp/system-setup.sh
     21 
     22 RUN chown -R worker:worker /builds/worker/bin && chmod 755 /builds/worker/bin/*
     23 ENV PATH $PATH:/builds/worker/bin
     24 
     25 ENV           LANG          C.UTF-8
     26 ENV           LC_ALL        C.UTF-8
     27 
     28 # Set a default command useful for debugging
     29 CMD ["/bin/bash", "--login"]