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

Automatic update of container definition files #738

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dockerfiles/binder_4.3.1.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ LABEL org.opencontainers.image.licenses="GPL-2.0-or-later" \
org.opencontainers.image.authors="Carl Boettiger <cboettig@ropensci.org>"

ENV NB_USER=rstudio
ENV VIRTUAL_ENV=/opt/venv
ENV PATH=${VIRTUAL_ENV}/bin:${PATH}

RUN /rocker_scripts/install_jupyter.sh

Expand Down
2 changes: 2 additions & 0 deletions dockerfiles/binder_4.3.2.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ LABEL org.opencontainers.image.licenses="GPL-2.0-or-later" \
org.opencontainers.image.authors="Carl Boettiger <cboettig@ropensci.org>"

ENV NB_USER=rstudio
ENV VIRTUAL_ENV=/opt/venv
ENV PATH=${VIRTUAL_ENV}/bin:${PATH}

RUN /rocker_scripts/install_jupyter.sh

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/geospatial-dev-osgeo_4.3.2.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL org.opencontainers.image.licenses="GPL-2.0-or-later" \
org.opencontainers.image.authors="Carl Boettiger <cboettig@ropensci.org>"

ENV PROJ_VERSION=9.3.1
ENV GDAL_VERSION=3.8.1
ENV GDAL_VERSION=3.8.2
ENV GEOS_VERSION=3.12.1

COPY scripts/experimental/install_dev_osgeo.sh /rocker_scripts/experimental/install_dev_osgeo.sh
Expand Down
4 changes: 3 additions & 1 deletion stacks/4.3.1.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@
},
"FROM": "rocker/geospatial:4.3.1",
"ENV": {
"NB_USER": "rstudio"
"NB_USER": "rstudio",
"VIRTUAL_ENV": "/opt/venv",
"PATH": "${VIRTUAL_ENV}/bin:${PATH}"
},
"RUN": [
"/rocker_scripts/install_jupyter.sh"
Expand Down
4 changes: 3 additions & 1 deletion stacks/4.3.2.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,9 @@
},
"FROM": "rocker/geospatial:4.3.2",
"ENV": {
"NB_USER": "rstudio"
"NB_USER": "rstudio",
"VIRTUAL_ENV": "/opt/venv",
"PATH": "${VIRTUAL_ENV}/bin:${PATH}"
},
"RUN": [
"/rocker_scripts/install_jupyter.sh"
Expand Down
2 changes: 1 addition & 1 deletion stacks/extra.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"FROM": "rocker/verse:4.3.2",
"ENV": {
"PROJ_VERSION": "9.3.1",
"GDAL_VERSION": "3.8.1",
"GDAL_VERSION": "3.8.2",
"GEOS_VERSION": "3.12.1"
},
"COPY": "scripts/experimental/install_dev_osgeo.sh /rocker_scripts/experimental/install_dev_osgeo.sh",
Expand Down