mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 22:54:34 +00:00
20 lines
323 B
Text
20 lines
323 B
Text
|
|
FROM ubuntu:bionic
|
||
|
|
|
||
|
|
RUN apt-get update -qq
|
||
|
|
RUN apt-get install -y \
|
||
|
|
build-essential \
|
||
|
|
clang \
|
||
|
|
cmake \
|
||
|
|
curl \
|
||
|
|
git \
|
||
|
|
libgl-dev \
|
||
|
|
libglu-dev \
|
||
|
|
libpython3-dev \
|
||
|
|
lsb-release \
|
||
|
|
pkg-config \
|
||
|
|
python3 \
|
||
|
|
python3-dev \
|
||
|
|
python3-distutils \
|
||
|
|
software-properties-common \
|
||
|
|
sudo
|