Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker: new jupyter for ravenpy and other new additions #89

Merged
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pipeline {
// https://jenkins.io/doc/book/pipeline/syntax/
agent {
docker {
image "pavics/workflow-tests:210728"
image "pavics/workflow-tests:210908"
label 'linux && docker'
}
}
Expand Down
2 changes: 1 addition & 1 deletion binder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM pavics/workflow-tests:210728
FROM pavics/workflow-tests:210908

USER root

Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ RUN conda update conda

# to checkout other notebooks and to run pip install
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
git mercurial gcc unzip patch fonts-humor-sans \
firefox-esr x11-utils && \
apt-get clean

COPY environment.yml /environment.yml
Expand Down
13 changes: 12 additions & 1 deletion docker/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,14 @@ dependencies:
- intake-thredds
- gcsfs
- zarr
- xclim
# https://github.com/dask/s3fs/
- s3fs
# Pinning xclim and climpred for ravenpy. Remove on next rebuild.
- xclim >=0.26.1,<0.29.0
- climpred >=2.1.0,<2.1.6
- ravenpy
# https://github.com/roocs/clisops
- clisops
# Universal Regridder for Geospatial Data
# https://github.com/pangeo-data/xESMF
- xesmf
Expand Down Expand Up @@ -116,6 +122,11 @@ dependencies:
# utilities
- curl
- wget
- nested_dict
- paramiko
- scp
- selenium
- geckodriver
# for pip packages
- pip
- pip:
Expand Down
2 changes: 1 addition & 1 deletion launchcontainer
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh -x

if [ -z "$DOCKER_IMAGE" ]; then
DOCKER_IMAGE="pavics/workflow-tests:210728"
DOCKER_IMAGE="pavics/workflow-tests:210908"
fi

if [ -z "$CONTAINER_NAME" ]; then
Expand Down
2 changes: 1 addition & 1 deletion launchnotebook
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then
fi

if [ -z "$DOCKER_IMAGE" ]; then
DOCKER_IMAGE="pavics/workflow-tests:210728"
DOCKER_IMAGE="pavics/workflow-tests:210908"
fi

if [ -z "$CONTAINER_NAME" ]; then
Expand Down