From 4f541e5d906c8b41434d910f004ff3ee16c060b0 Mon Sep 17 00:00:00 2001 From: Adrien Perrin Date: Thu, 11 Apr 2024 13:16:36 +0200 Subject: [PATCH] use pip instead of setup.py to install nansat in Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2ef496bc..e380747b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \