Skip to content

Commit ef6f8a1

Browse files
authored
Merge pull request #180 from nansencenter/fix_docker_image
Fix geospaas package installation in docker image
2 parents 55fe6eb + 304c810 commit ef6f8a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- '3.10'
1919
- '3.11'
2020
env:
21-
BASE_IMAGE: "${{ vars.DOCKER_ORG }}/nansat:v1.6.0-python${{ matrix.python_version }}"
21+
BASE_IMAGE: "${{ vars.DOCKER_ORG }}/nansat:v1.6.1-python${{ matrix.python_version }}"
2222
IMAGE_NAME: "${{ vars.DOCKER_ORG }}/geospaas"
2323
latest: ${{ matrix.python_version == '3.11' && 'true' || '' }}
2424
steps:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ COPY geospaas /tmp/geospaas
3131
COPY setup.py /tmp/
3232
COPY MANIFEST.in /tmp/
3333
WORKDIR /tmp
34-
RUN python setup.py install \
34+
RUN pip install . \
3535
&& rm -r geospaas setup.py MANIFEST.in
3636

3737
WORKDIR /src

0 commit comments

Comments
 (0)