build-containers/Dockerfile.base

14 lines
314 B
Docker
Raw Normal View History

FROM fedora:40
2019-01-07 21:51:22 +01:00
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
2020-03-19 18:13:06 +01:00
CMD /bin/bash