Bug 1866777 - Disable test_race_cache_with_network.js on windows opt for frequent...
[gecko.git] / taskcluster / docker / ubuntu1804-build-python / Dockerfile
blob1613b9d82812edf171665bf2da91f758004dd5de
1 # This docker image is used to build the Python interpreter. It requires an old
2 # glibc to be compatible with all the other images with ship.
3 FROM          $DOCKER_IMAGE_PARENT
4 MAINTAINER    Serge Guelton <sguelton@mozilla.com>
6 # We need to declare all potentially cache volumes as caches. Also,
7 # making high I/O paths volumes increase I/O throughput because of
8 # AUFS slowness.
9 VOLUME  /builds/worker/.cache
10 VOLUME  /builds/worker/checkouts
11 VOLUME  /builds/worker/workspace
13 RUN apt-get install build-essential \
14                     libexpat1-dev \
15                     libffi-dev \
16                     liblzma-dev \
17                     libncursesw5-dev \
18                     libsqlite3-dev \
19                     libssl-dev \
20                     libbz2-dev
22 CMD ["/bin/bash", "--login"]