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.
|
FROM debian:10-slim
|
|
|
|
RUN dpkg --add-architecture i386 && \
|
|
apt-get update && apt-get upgrade -y && apt-get install -y \
|
|
build-essential \
|
|
ca-certificates \
|
|
g++-multilib \
|
|
libfontconfig-dev:i386 \
|
|
libglu-dev:i386 \
|
|
python \
|
|
&& rm -rf /var/lib/apt/lists/*
|