From efb9eb82c5fc25c66ec47904e9b6856cca34886f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20B=C3=BCcker?= <mb366767@fh-muenster.de> Date: Fri, 29 Sep 2023 07:07:54 +0000 Subject: [PATCH] Export IPYTHONDIR --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6a281c6..cf857c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY .env .env COPY requirements.txt requirements.txt RUN pip install --no-cache-dir -r requirements.txt WORKDIR /usr/src/app/startup/ -RUN export IPYTHONDIR ./ +RUN export IPYTHONDIR=$(pwd) COPY python_startup/ ./ -- GitLab