Files
build-containers/Dockerfile.base
Rémi Verschelde ffa2f1a5d7 Redo .NET 8.0, SCons 4.6.0, and Android API 34 updates lost in #138
Made a mistake while rebasing to make the PR.
2024-02-08 17:29:08 +01:00

14 lines
314 B
Docker

FROM fedora:39
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.6.0
CMD /bin/bash