Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Bump rockylinux from 9.1-minimal to 9.2-minimal in /docker #89

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ARG REPO_URL=https://github.com/NOAA-OWP/ngen.git \
################################################################################################################
################################################################################################################
##### Create intermediate Docker build stage for Rocky-Linux-based "base"
FROM rockylinux:9.1 as rocky-base
FROM rockylinux:9.2 as rocky-base

#USER=root

Expand All @@ -91,7 +91,7 @@ RUN dnf update -y \
################################################################################################################
################################################################################################################
##### Create intermediate Docker build stage for downloading Boost
FROM rockylinux:9.1 AS download_boost
FROM rockylinux:9.2 AS download_boost

# Redeclaring inside this stage to get default from before first FROM
ARG BOOST_VERSION
Expand All @@ -103,7 +103,7 @@ RUN curl -L -o boost_${BOOST_VERSION//./_}.tar.bz2 https://sourceforge.net/proje
################################################################################################################
##https://support.hdfgroup.org/ftp/HDF5/releases##############################################################################################################
##### Create intermediate Docker build stage for downloading MPICH
FROM rockylinux:9.1 AS download_mpich
FROM rockylinux:9.2 AS download_mpich

# Redeclaring inside this stage to get default from before first FROM
ARG MPICH_VERSION
Expand All @@ -114,7 +114,7 @@ RUN curl -o /tmp/mpich-${MPICH_VERSION}.tar.gz https://www.mpich.org/static/down
################################################################################################################
################################################################################################################
##### Create intermediate Docker build stage for downloading MPICH
FROM rockylinux:9.1 AS download_hd5
FROM rockylinux:9.2 AS download_hd5

# Redeclaring inside this stage to get default from before first FROM
ARG HD5_VERSION
Expand Down Expand Up @@ -584,7 +584,7 @@ ENV PATH=${WORKDIR}:$PATH

################################################################################################################
##### Final stage for image
FROM rockylinux:9.1-minimal
FROM rockylinux:9.2-minimal

########################################Copy over the NGEN artifacts############################################
COPY --chown=root --from=rocky_build_staging /dmod/ /dmod/
Expand Down