Files
fedora-runner/Dockerfile
T
thayol f551ac96ef
Build Runner Image / build (push) Successful in 3m58s
Separate Godot install into its own layer
2026-05-20 22:47:24 +02:00

21 lines
249 B
Docker

FROM fedora:latest
RUN dnf install -y \
git \
nodejs \
npm \
curl \
wget \
jq \
tar \
xz \
findutils \
which \
gcc \
make \
&& dnf clean all
RUN dnf install -y \
godot \
&& dnf clean all