1
0
Fork 0
firefox/taskcluster/docker/build-python-wheels/Dockerfile
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
586 B
Docker

# This docker image is used to build python wheels.
FROM $DOCKER_IMAGE_PARENT
MAINTAINER Alexandre Lissy <alissy@mozilla.com>
# 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/checkouts
VOLUME /builds/worker/workspace
RUN apt-get update && apt-get install -y build-essential \
libdbus-1-dev \
libglib2.0-dev \
python3-dev \
python3-pip
CMD ["/bin/bash", "--login"]