tor-browser

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

Dockerfile (586B)


      1 # This docker image is used to build python wheels.
      2 FROM          $DOCKER_IMAGE_PARENT
      3 MAINTAINER    Alexandre Lissy <alissy@mozilla.com>
      4 
      5 # We need to declare all potentially cache volumes as caches. Also,
      6 # making high I/O paths volumes increase I/O throughput because of
      7 # AUFS slowness.
      8 VOLUME  /builds/worker/checkouts
      9 VOLUME  /builds/worker/workspace
     10 
     11 RUN apt-get update && apt-get install -y build-essential \
     12                    libdbus-1-dev \
     13                    libglib2.0-dev \
     14                    python3-dev \
     15                    python3-pip
     16 
     17 CMD ["/bin/bash", "--login"]