Skip to content
Snippets Groups Projects

Merge work from 1.1 into master

Merged Levi Pfantz requested to merge develop into master
23 files
+ 209
77
Compare changes
  • Side-by-side
  • Inline
Files
23
+ 4
4
# 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,12 +8,12 @@ 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 xz && dnf clean all
# Download and install miniforge
# https://github.com/conda-forge/miniforge#miniforge
RUN curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh" && \
/bin/bash Mambaforge-$(uname)-$(uname -m).sh -b -p $HOME/miniforge && \
RUN curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" && \
/bin/bash Miniforge3-$(uname)-$(uname -m).sh -b -p $HOME/miniforge && \
ln -s $HOME/miniforge/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \
echo ". $HOME/miniforge/etc/profile.d/conda.sh" >> ~/.bashrc && \
echo "conda activate base" >> ~/.bashrc
Loading