Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nshmp-ws-static
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
ghsc
National Seismic Hazard Model Project
nshmp-ws-static
Merge requests
!53
Convert to NetCDF
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Convert to NetCDF
ghsc/users/bclayton/nshmp/nshmp-ws-static:convert
into
master
Overview
0
Commits
51
Pipelines
0
Changes
36
Merged
Clayton, Brandon Scott
requested to merge
ghsc/users/bclayton/nshmp/nshmp-ws-static:convert
into
master
4 years ago
Overview
0
Commits
51
Pipelines
0
Changes
36
Expand
Resolves
#12 (closed)
Edited
4 years ago
by
Clayton, Brandon Scott
0
0
Merge request reports
Compare
master
version 13
11c9173d
4 years ago
version 12
ace0beff
4 years ago
version 11
03fb203f
4 years ago
version 10
8d6d5728
4 years ago
version 9
d6d88073
4 years ago
version 8
e5e0b8ec
4 years ago
version 7
a3d6fbc3
4 years ago
version 6
f96cc2ae
4 years ago
version 5
d0cb32ca
4 years ago
version 4
0e88759d
4 years ago
version 3
b9e4e70d
4 years ago
version 2
d752f246
4 years ago
version 1
6d0b7b0a
4 years ago
master (base)
and
latest version
latest version
0b9c6129
51 commits,
4 years ago
version 13
11c9173d
50 commits,
4 years ago
version 12
ace0beff
48 commits,
4 years ago
version 11
03fb203f
47 commits,
4 years ago
version 10
8d6d5728
46 commits,
4 years ago
version 9
d6d88073
45 commits,
4 years ago
version 8
e5e0b8ec
44 commits,
4 years ago
version 7
a3d6fbc3
42 commits,
4 years ago
version 6
f96cc2ae
41 commits,
4 years ago
version 5
d0cb32ca
40 commits,
4 years ago
version 4
0e88759d
38 commits,
4 years ago
version 3
b9e4e70d
37 commits,
4 years ago
version 2
d752f246
36 commits,
4 years ago
version 1
6d0b7b0a
35 commits,
4 years ago
36 files
+
1352
−
438
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
36
Search (e.g. *.vue) (Ctrl+P)
.gitlab/Dockerfile
+
22
−
10
Options
####
# Used in GitLab pipelines.
#
# Requires:
# - Java 11
# - Python 3.9
# - Poetry
# - NetCDF
####
ARG
FROM_IMAGE=usgs/java:11-jdk
FROM
${FROM_IMAGE}
@@ -8,21 +18,23 @@ USER root
ENV
PYTHON_URL="https://www.python.org/ftp/python/3.9.2/Python-3.9.2.tgz"
RUN
yum
install
-y
\
openssl-devel
\
bzip2-devel
\
libffi-devel
\
zlib-devel
\
groff
\
&&
yum groupinstall
-y
development
\
RUN
yum
install
-y
epel-release dnf-plugins-core
\
&&
yum config-manager
--set-enabled
powertools
\
&&
yum
install
-y
\
gcc
\
make
\
netcdf
\
openssl-devel
\
bzip2-devel
\
libffi-devel
\
zlib-devel
\
&&
yum clean all
WORKDIR
/python
RUN
curl
-sS
"
${
PYTHON_URL
}
"
|
tar
xvz
--strip-components
=
1
\
&&
./configure
\
&&
make
\
&&
make
install
\
&&
./configure
--enable-optimizations
--silent
\
&&
make
install
--silent
\
&&
curl
-sSL
https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3
WORKDIR
/
Loading