mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-12 21:50:26 +01:00
16 lines
524 B
Text
16 lines
524 B
Text
FROM ubuntu:18.04
|
|
RUN apt-get update && apt-get install -y \
|
|
# The following are required to compile for any platform:
|
|
git \
|
|
python3 \
|
|
scons \
|
|
# The following are required to compile for 64-bit Linux:
|
|
build-essential \
|
|
# The following are required to compile for 32-bit Linux:
|
|
gcc-multilib \
|
|
g++-multilib \
|
|
# The following is required to cross-compile for 32/64-bit Windows:
|
|
g++-mingw-w64-x86-64 \
|
|
# The following is required to cross-compile for MacOS:
|
|
clang
|
|
COPY . /src
|