Some checks failed
Publish Builder Images / build-and-push (push) Failing after 1m32s
13 lines
322 B
Docker
13 lines
322 B
Docker
FROM fedora:42
|
|
|
|
WORKDIR /root
|
|
|
|
ENV DOTNET_NOLOGO=1
|
|
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=False \
|
|
bash binutils bzip2 curl file findutils gettext git make nano patch pkgconfig python3-pip unzip which xz \
|
|
dotnet-sdk-8.0 && \
|
|
pip install scons==4.9.1
|
|
|
|
CMD /bin/bash |