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