File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 5050 target : base
5151 build-args : |
5252 BASE_IMAGE=${{ env.BASE_IMAGE }}
53+ PYTHESINT_VERSION=v1.7.3.dev0
5354 push : false
5455 load : true
5556 tags : testing
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ ARG BASE_IMAGE='nansencenter/nansat:latest'
33FROM ${BASE_IMAGE} as base
44LABEL purpose="Running and developing Django-Geo-SpaaS"
55ENV PYTHONUNBUFFERED=1
6+ ARG PYTHESINT_VERSION ''
67
78# Install Django
89RUN apt update \
@@ -21,7 +22,9 @@ RUN apt update \
2122 thredds_crawler==1.5.4 \
2223&& apt remove -y g++ && apt autoremove -y \
2324&& apt clean && rm -rf /var/lib/apt/lists/* \
24- && echo "alias ll='ls -lh'" >> /root/.bashrc
25+ && echo "alias ll='ls -lh'" >> /root/.bashrc \
26+ && [ -n "${PYTHESINT_VERSION}" ] && pythesint_version_string="==${PYTHESINT_VERSION}" || pythesint_version_string=''
27+ && pip install -y --no-cache-dir "pythesint${pythesint_version_string}"
2528
2629FROM base as full
2730
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ dependencies = [
3434 " gdal" ,
3535 " nansat" ,
3636 " netCDF4" ,
37- " pythesint" ,
37+ " pythesint==1.7.3.dev0 " ,
3838]
3939urls = {Repository = " https://github.com/nansencenter/django-geo-spaas" }
4040dynamic = [" version" ]
You can’t perform that action at this time.
0 commit comments