From cc04d47a73216a09105f121a9ef7fc865e709de1 Mon Sep 17 00:00:00 2001 From: Levi Pfantz <lpfantz@wisc.edu> Date: Wed, 3 Jul 2024 16:03:58 -0500 Subject: [PATCH] Update docker file to use rocky8 --- buildbucket/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildbucket/Dockerfile b/buildbucket/Dockerfile index 5861632..5bafdf8 100644 --- a/buildbucket/Dockerfile +++ b/buildbucket/Dockerfile @@ -1,6 +1,6 @@ # To build: # docker build -t gitlab.ssec.wisc.edu:5555/cspp_geo/cspp-geo-gridded-glm/buildbucket:r$(date '+%Y%m%d') . -FROM --platform=linux/amd64 centos:7 +FROM --platform=linux/amd64 rockylinux:8 WORKDIR /work @@ -8,7 +8,7 @@ COPY buildbucket_environment.yaml . COPY package.sh . # Install the `which` command for debugging -RUN yum -y install which git && yum clean all +RUN dnf -y install which git findutils && dnf clean all # Download and install miniforge # https://github.com/conda-forge/miniforge#miniforge -- GitLab