From fd3d9102e004905a35f6f7927a50d1781dd41a05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20B=C3=BCcker?= <mb366767@fh-muenster.de> Date: Mon, 7 Oct 2024 22:17:11 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c67b38..4a749f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /usr/src/app # Install basics USER jovyan -RUN pip3 install --upgrade pip setuptools wheel +# RUN pip3 install --upgrade pip setuptools wheel RUN pip3 install --upgrade pip # RUN pip3 install pip-review # RUN pip-review --local --auto @@ -18,7 +18,7 @@ COPY .env .env # Install python packages COPY requirements.txt requirements.txt - RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt # RUN pip install --ignore-installed --no-cache-dir -r requirements.txt ENV IPYTHONDIR /usr/src/app/ipython/ WORKDIR /usr/src/app/ipython/profile_default/startup/ -- GitLab