mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-12 21:50:26 +01:00
8 lines
408 B
Docker
8 lines
408 B
Docker
|
# Uses an old version of Ubuntu in order to target an old version of GLIBC so users
|
||
|
# with older versions of GLIBC installed on their systems can use the library.
|
||
|
FROM kroggen/ubuntu-16.04-gcc
|
||
|
RUN apt-get update -y
|
||
|
RUN apt-get install -y python3 python3-pip gcc-multilib g++-multilib
|
||
|
RUN pip3 install scons
|
||
|
CMD scons platform=linux generate_bindings=yes target=${TARGET:-release} bits=${BITS:-64} -j$(nproc)
|