You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
208 B
10 lines
208 B
4 months ago
|
FROM debian:10-slim
|
||
|
|
||
|
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
|
||
|
build-essential \
|
||
|
ca-certificates \
|
||
|
libfontconfig-dev \
|
||
|
libglu-dev \
|
||
|
python \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|