10 lines
250 B
Docker
10 lines
250 B
Docker
FROM fedora:41
|
|
MAINTAINER Ben Boeckel <ben.boeckel@kitware.com>
|
|
|
|
# Install build dependencies for packages.
|
|
COPY install_deps.sh /root/install_deps.sh
|
|
RUN sh /root/install_deps.sh
|
|
|
|
COPY install_gcc.sh /root/install_gcc.sh
|
|
RUN sh /root/install_gcc.sh
|