7f01c22314
Replace Python 2 with Python 3 on Debian 9 Docker image, since jobs peter out with `/usr/bin/env: 'python3': No such file or directory`. Change-Id: I0041c408b4e889ba6985193e5f446e477bbd8705 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/438079 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Erik Rose <erikrose@google.com>
31 lines
611 B
Docker
31 lines
611 B
Docker
FROM debian:9-slim
|
|
|
|
# See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199
|
|
# Needed for installing openjdk-8-headless on debian:9-slim
|
|
RUN mkdir -p /usr/share/man/man1
|
|
|
|
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
|
|
build-essential \
|
|
mercurial \
|
|
libosmesa-dev \
|
|
libexpat1-dev \
|
|
clang \
|
|
llvm \
|
|
poppler-utils \
|
|
netpbm \
|
|
gcc-multilib \
|
|
g++-multilib \
|
|
openjdk-8-jdk-headless \
|
|
libxi-dev \
|
|
python3-django \
|
|
libc++-dev \
|
|
libc++abi-dev \
|
|
gperf \
|
|
bison \
|
|
usbutils \
|
|
libfontconfig-dev \
|
|
libglu-dev \
|
|
python3 \
|
|
git \
|
|
&& rm -rf /var/lib/apt/lists/*
|