2020-07-13 06:14:30 +02:00
|
|
|
FROM archlinux:20200908
|
2020-10-13 10:20:40 +02:00
|
|
|
RUN pacman -Sy --needed --noconfirm \
|
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 \
|
2020-11-06 06:57:25 +01:00
|
|
|
scons \
|
|
|
|
# The following are required to compile for 64-bit Linux:
|
|
|
|
base-devel \
|
|
|
|
# The following are required to compile for 32-bit Linux:
|
|
|
|
multilib-devel \
|
|
|
|
# The following is required to cross-compile for 32/64-bit Windows:
|
|
|
|
mingw-w64-gcc \
|
|
|
|
# The following is required to cross-compile for MacOS:
|
|
|
|
clang
|
2020-07-13 06:14:30 +02:00
|
|
|
COPY . /src
|