Skip to content

Commit

Permalink
Merge pull request #540 from nansencenter/fix_docker_image
Browse files Browse the repository at this point in the history
Use pip instead of setup.py to install nansat in Docker image
  • Loading branch information
aperrin66 authored Apr 11, 2024
2 parents 4b240d7 + 4f541e5 commit 8494960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY setup.py /tmp/
WORKDIR /tmp
RUN apt update \
&& apt install -y --no-install-recommends g++ \
&& python setup.py install \
&& pip install . \
&& rm -rf /tmp/{utilities,nansat,setup.py} \
&& apt autoremove -y \
&& apt clean \
Expand Down

0 comments on commit 8494960

Please sign in to comment.