Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed package versions #10

Merged
merged 4 commits into from
Jul 20, 2022
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,32 @@
# purpose image. It contains the toolchains for all supported architectures, and
# all build dependencies.
FROM registry.fedoraproject.org/fedora-minimal:35 AS build
ENV GCC_VERSION=11.2.1-1.fc35
ENV NASM_VERSION=2.15.05-1.fc35
ENV PYTHON_VERSION=3.10
osteffenrh marked this conversation as resolved.
Show resolved Hide resolved
RUN microdnf \
--assumeyes \
--nodocs \
--setopt=install_weak_deps=0 \
install \
acpica-tools \
g++ \
gcc \
gcc-aarch64-linux-gnu \
gcc-arm-linux-gnu \
gcc-riscv64-linux-gnu \
gcc-c++-${GCC_VERSION} \
gcc-${GCC_VERSION} \
gcc-aarch64-linux-gnu-${GCC_VERSION} \
gcc-arm-linux-gnu-${GCC_VERSION} \
gcc-riscv64-linux-gnu-${GCC_VERSION} \
git \
libX11-devel \
libXext-devel \
libuuid-devel \
make \
nuget \
nasm \
python \
nasm-${NASM_VERSION} \
python${PYTHON_VERSION} \
python3-distutils-extra \
python3-pip \
python3-setuptools
RUN alternatives --install /usr/bin/python python /usr/bin/python3 1
RUN pip install pip --upgrade
ENV GCC5_AARCH64_PREFIX /usr/bin/aarch64-linux-gnu-
ENV GCC5_ARM_PREFIX /usr/bin/arm-linux-gnu-
Expand Down