Files
IronFox/Dockerfile
2026-07-31 00:37:01 +00:00

31 lines
399 B
Docker

FROM fedora:43
# Cosmetic, bump to re-build container image
ENV IRONFOX_IMAGE_VERSION=1
# 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"]