Philipp Schrader | 8ac22f3 | 2023-12-30 17:37:15 -0800 | [diff] [blame^] | 1 | # This Dockerfile sets up a container with the minimum number of things to make |
| 2 | # //tools/python:requirements.update target happy. |
| 3 | |
| 4 | FROM debian:12 |
| 5 | |
| 6 | RUN apt update |
| 7 | RUN DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y clang |
| 8 | RUN DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y python3 |
| 9 | RUN DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y pkgconf |
| 10 | RUN DEBIAN_FRONTEND=noninteractive apt install --no-install-recommends -y libcairo2-dev |