Skip to content

Commit

Permalink
Merge pull request #180 from nansencenter/fix_docker_image
Browse files Browse the repository at this point in the history
Fix geospaas package installation in docker image
  • Loading branch information
aperrin66 authored Apr 11, 2024
2 parents 55fe6eb + 304c810 commit ef6f8a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- '3.10'
- '3.11'
env:
BASE_IMAGE: "${{ vars.DOCKER_ORG }}/nansat:v1.6.0-python${{ matrix.python_version }}"
BASE_IMAGE: "${{ vars.DOCKER_ORG }}/nansat:v1.6.1-python${{ matrix.python_version }}"
IMAGE_NAME: "${{ vars.DOCKER_ORG }}/geospaas"
latest: ${{ matrix.python_version == '3.11' && 'true' || '' }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COPY geospaas /tmp/geospaas
COPY setup.py /tmp/
COPY MANIFEST.in /tmp/
WORKDIR /tmp
RUN python setup.py install \
RUN pip install . \
&& rm -r geospaas setup.py MANIFEST.in

WORKDIR /src

0 comments on commit ef6f8a1

Please sign in to comment.