2
Files
Ryan 5e0ae2a4a0
on-push / buildenv/f44-x86_64-unified (push) Successful in 16m5s
on-release / buildenv/f44-x86_64-unified (push) Successful in 11s
Hello infra.buildenv
2026-06-24 07:51:59 +02:00

33 lines
651 B
Docker

FROM fedora:44
LABEL maintainer="Per Ryan Edin <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://download.build2.org/0.18.1/build2-install-0.18.1.sh \
&& sh build2-install-0.18.1.sh --yes --trust yes \
&& cd / \
&& rm -rf ~/build2-build
RUN true \
&& wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /usr/bin/mc \
&& chmod +x /usr/bin/mc