Files
build-containers/Dockerfile.base
Rémi Verschelde 8b89e8281a Update to Emscripten 3.1.63, SCons 4.8.0
And update README with latest image sizes.
2024-07-19 16:25:06 +02:00

14 lines
314 B
Docker

FROM fedora:40
WORKDIR /root
ENV DOTNET_NOLOGO=1
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
RUN dnf -y install --setopt=install_weak_deps=False \
bash bzip2 curl file findutils gettext git make nano patch pkgconfig python3-pip unzip which xz \
dotnet-sdk-8.0 && \
pip install scons==4.8.0
CMD /bin/bash