.NET 6: Remove all Mono build code, install .NET SDK 6.0

This commit is contained in:
Rémi Verschelde
2022-08-26 15:39:52 +02:00
parent 06420a2e06
commit 58a04947c4
13 changed files with 59 additions and 250 deletions

View File

@@ -2,8 +2,12 @@ FROM fedora:36
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 git make nano patch pkgconfig python3-pip unzip which xz && \
pip install scons==4.3.0
bash bzip2 curl file findutils git make nano patch pkgconfig python3-pip unzip which xz \
dotnet-sdk-6.0 && \
pip install scons==4.4.0
CMD /bin/bash