mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-02-07 04:43:09 -05:00
ironfox-oss/IronFox!121 ____ ## Changes - Updated to Firefox [`147.0.2`](https://firefox.com/firefox/android/147.0.2/releasenotes/). - Updated to Rust [`1.93.0`](https://releases.rs/docs/1.93.0/). - Other minor tweaks, fixes, and enhancements. MR-author: celenity <celenity@celenity.dev> Co-authored-by: Weblate <hosted@weblate.org> Approved-by: Akash Yadav <itsaky01@gmail.com> Merged-by: celenity <celenity@celenity.dev>
35 lines
612 B
Docker
35 lines
612 B
Docker
FROM fedora:43
|
|
|
|
# Ensure we're up to date
|
|
RUN dnf update -y --refresh
|
|
|
|
# Add + enable the Adoptium Working Group's repository
|
|
RUN dnf install -y adoptium-temurin-java-repository && \
|
|
dnf config-manager setopt adoptium-temurin-java-repository.enabled=1 && \
|
|
dnf makecache
|
|
|
|
# Install our dependencies...
|
|
RUN dnf install -y \
|
|
cmake \
|
|
clang \
|
|
gawk \
|
|
git \
|
|
m4 \
|
|
make \
|
|
nasm \
|
|
ninja-build \
|
|
patch \
|
|
perl \
|
|
python3.9 \
|
|
shasum \
|
|
temurin-8-jdk \
|
|
temurin-17-jdk \
|
|
xz \
|
|
yq \
|
|
zlib-devel
|
|
|
|
# cd into working directory
|
|
WORKDIR /app
|
|
|
|
CMD ["/bin/bash"]
|