Skip to content

Commit

Permalink
update to alma 8
Browse files Browse the repository at this point in the history
  • Loading branch information
BotellaA committed Jul 4, 2024
1 parent 13772da commit f6dee92
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
# Pull base image.
FROM quay.io/pypa/manylinux2014_x86_64
FROM quay.io/pypa/manylinux_2_28_x86_64

# Install.
RUN \
yum install -y epel-release yum-utils && \
curl -sL https://rpm.nodesource.com/setup_14.x | bash - && \
curl -sL https://rpm.nodesource.com/setup_20.x | bash - && \
yum update -y && \
yum install -y dnf wget ninja-build zstd valgrind-devel nodejs && \
yum install -y dnf wget ninja-build zstd valgrind-devel nodejs openssl-devel && \
dnf install -y 'dnf-command(config-manager)' && \
dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo && \
dnf install -y gh && \
wget https://www.openssl.org/source/openssl-1.1.1t.tar.gz && \
tar -xzf openssl-1.1.1t.tar.gz && \
cd openssl-1.1.1t && \
./config no-shared no-comp && \
make -j && make install && \
cd .. && rm -rf openssl-1.1.1t*
dnf install -y gh

# Set environment variables.
ENV HOME /root
Expand Down

0 comments on commit f6dee92

Please sign in to comment.