Files
build-containers/Dockerfile.base
Rémi Verschelde 6cfd2d060a Set base to Fedora 35 for now, F36 still a bit too new
Notably LLVM 14 on F36 doesn't seem to play nice with macOS builds.
We probably need to wait for Xcode 14 to have support for LLVM 14.

Going back to F35 also avoids issues with autoconf 2.71.
2022-05-19 08:43:19 +02:00

11 lines
285 B
Docker

FROM fedora:35
WORKDIR /root
RUN dnf -y upgrade --setopt=install_weak_deps=False && \
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
CMD /bin/bash