Skip to content

Commit

Permalink
Moved Deps to their own run, and also added some more for i686
Browse files Browse the repository at this point in the history
  • Loading branch information
Bioblaze committed Oct 24, 2024
1 parent 9b97275 commit c11d10e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions images/linux.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@ RUN dnf update -y
# Install bash, curl, and other basic utilities
RUN dnf install -y --setopt=install_weak_deps=False \
bash bzip2 curl file findutils gettext \
git make nano patch pkg-config unzip xz gcc-c++ cmake gdb \
glibc-devel glibc-devel.i686 libcxx-devel libcxx libstdc++-devel libstdc++-devel.i686 libstdc++ libstdc++.i686
git make nano patch pkg-config unzip xz cmake gdb

# Install 32bit Deps seperately
RUN dnf install -y \
gcc-c++ gcc-c++.i686 glibc-devel glibc-devel.i686 \
libcxx-devel libcxx \
libstdc++-devel libstdc++-devel.i686 libstdc++ libstdc++.i686

# Install Python and pip for SCons
RUN dnf install -y python3-pip
Expand Down

0 comments on commit c11d10e

Please sign in to comment.