Files
IronFox/Dockerfile
celenity e8dde910b8 feat: Set-up Python with UV directly
(also sets envs to configure Python and UV)

Signed-off-by: celenity <celenity@celenity.dev>
2026-03-29 20:14:28 -04:00

28 lines
355 B
Docker

FROM fedora:43
# Ensure we're up to date
RUN dnf update -y --refresh
# Install our dependencies...
RUN dnf install -y \
cmake \
clang \
gawk \
git \
jq \
m4 \
make \
nasm \
ninja-build \
patch \
perl \
shasum \
xz \
yq \
zlib-devel
# cd into working directory
WORKDIR /app
CMD ["/bin/bash"]