From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../docker/ubuntu1804-build-python/Dockerfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 taskcluster/docker/ubuntu1804-build-python/Dockerfile (limited to 'taskcluster/docker/ubuntu1804-build-python/Dockerfile') diff --git a/taskcluster/docker/ubuntu1804-build-python/Dockerfile b/taskcluster/docker/ubuntu1804-build-python/Dockerfile new file mode 100644 index 0000000000..1613b9d828 --- /dev/null +++ b/taskcluster/docker/ubuntu1804-build-python/Dockerfile @@ -0,0 +1,22 @@ +# This docker image is used to build the Python interpreter. It requires an old +# glibc to be compatible with all the other images with ship. +FROM $DOCKER_IMAGE_PARENT +MAINTAINER Serge Guelton + +# We need to declare all potentially cache volumes as caches. Also, +# making high I/O paths volumes increase I/O throughput because of +# AUFS slowness. +VOLUME /builds/worker/.cache +VOLUME /builds/worker/checkouts +VOLUME /builds/worker/workspace + +RUN apt-get install build-essential \ + libexpat1-dev \ + libffi-dev \ + liblzma-dev \ + libncursesw5-dev \ + libsqlite3-dev \ + libssl-dev \ + libbz2-dev + +CMD ["/bin/bash", "--login"] -- cgit v1.2.3