2020-07-13 06:14:30 +02:00
|
|
|
FROM ubuntu:18.04
|
2020-10-13 10:20:40 +02:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2020-11-06 06:57:25 +01:00
|
|
|
# The following are required to compile for any platform:
|
2020-10-13 10:20:40 +02:00
|
|
|
git \
|
|
|
|
python3 \
|
2020-11-06 06:57:25 +01:00
|
|
|
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
|
2020-07-13 06:14:30 +02:00
|
|
|
COPY . /src
|