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 image for test model run #378

Merged
merged 2 commits into from
Feb 3, 2022
Merged
Changes from all 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
6 changes: 3 additions & 3 deletions docker/CENTOS_NGEN_RUN.dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM centos:8.4.2105 as builder
FROM rockylinux as builder

RUN yum update -y \
&& yum install -y dnf-plugins-core \
&& yum -y config-manager --set-enabled powertools \
# && yum -y config-manager --set-enabled powertools \
&& yum -y install epel-release \
&& yum repolist \
&& yum install -y tar git gcc-c++ gcc make cmake python38 python38-devel python38-numpy bzip2 udunits2-devel texinfo \
&& yum install -y tar git gcc-c++ gcc make cmake python38 python38-devel python38-numpy bzip2 udunits2-devel \
&& dnf clean all \
&& rm -rf /var/cache/yum

Expand Down