blob: 551674eb3b0cea0864b7a91cc55daf43b8e090ed [file] [log] [blame]
Philipp Schrader8ac22f32023-12-30 17:37:15 -08001# This Dockerfile sets up a container with the minimum number of things to make
2# //tools/python:requirements.update target happy.
3
4FROM debian:12
5
6RUN apt update
7RUN DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y clang
8RUN DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y python3
9RUN DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y pkgconf
10RUN DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y libcairo2-dev
Austin Schuhea5f0a72024-09-02 15:02:36 -070011RUN DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y libgirepository1.0-dev