xref: /aosp_15_r20/external/skia/infra/gcc/Debian11/Dockerfile (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1FROM debian:11-slim
2
3RUN apt-get update && apt-get upgrade -y && apt-get install -y  \
4  build-essential \
5  ca-certificates \
6  libfontconfig-dev \
7  libglu-dev \
8  python3 \
9  wget \
10  unzip \
11  lld \
12  git \
13  && rm -rf /var/lib/apt/lists/*
14RUN ln -s /usr/bin/python3 /usr/bin/python
15