Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cspp-geo-gridded-glm
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cspp_geo
cspp-geo-gridded-glm
Merge requests
!37
Merge work from 1.1 into master
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Merge work from 1.1 into master
develop
into
master
Overview
0
Commits
22
Pipelines
0
Changes
23
Merged
Levi Pfantz
requested to merge
develop
into
master
3 months ago
Overview
0
Commits
22
Pipelines
0
Changes
23
Expand
Now that 1.1 is released I'm merging dev into master
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
61c6ba03
22 commits,
3 months ago
23 files
+
209
−
77
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
23
Search (e.g. *.vue) (Ctrl+P)
buildbucket/Dockerfile
+
4
−
4
Options
# 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/M
amba
forge-
$(
uname
)
-
$(
uname
-m
)
.sh"
&&
\
/bin/bash M
amba
forge-
$(
uname
)
-
$(
uname
-m
)
.sh
-b
-p
$HOME
/miniforge
&&
\
RUN
curl
-L
-O
"https://github.com/conda-forge/miniforge/releases/latest/download/M
ini
forge
3
-
$(
uname
)
-
$(
uname
-m
)
.sh"
&&
\
/bin/bash M
ini
forge
3
-
$(
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