mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-04-17 05:27:26 -04:00
(also sets envs to configure Python and UV) Signed-off-by: celenity <celenity@celenity.dev>
28 lines
355 B
Docker
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"]
|