2025-10-18 00:52:29 +02:00
|
|
|
FROM fedora:42
|
|
|
|
|
LABEL maintainer="Ryan <ryan@helloryan.se>"
|
|
|
|
|
|
|
|
|
|
RUN true \
|
|
|
|
|
&& dnf -y install \
|
|
|
|
|
clang \
|
|
|
|
|
curl \
|
|
|
|
|
doxygen \
|
|
|
|
|
gcc \
|
|
|
|
|
gcc-plugin-devel \
|
|
|
|
|
git \
|
|
|
|
|
make \
|
|
|
|
|
nodejs \
|
|
|
|
|
openssl \
|
|
|
|
|
rsync \
|
|
|
|
|
sqlite3 \
|
|
|
|
|
wget \
|
|
|
|
|
xxd \
|
|
|
|
|
yarnpkg \
|
|
|
|
|
&& dnf clean all
|
|
|
|
|
|
|
|
|
|
RUN true \
|
|
|
|
|
&& mkdir ~/build2-build \
|
|
|
|
|
&& cd ~/build2-build \
|
|
|
|
|
&& curl -sSfO https://stage.build2.org/0/0.18.0-a.0/build2-install-0.18.0-a.0-stage.sh \
|
|
|
|
|
&& sh build2-install-0.18.0-a.0-stage.sh --yes --trust yes \
|
|
|
|
|
&& cd / \
|
|
|
|
|
&& rm -rf ~/build2-build
|
2025-12-01 04:36:00 +01:00
|
|
|
|
|
|
|
|
RUN true \
|
|
|
|
|
&& wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /usr/bin/mc \
|
|
|
|
|
&& chmod +x /usr/bin/mc
|