From ded199aa65b7f601a6d0312620c1da8096ae8dcf Mon Sep 17 00:00:00 2001 From: Rainer Date: Thu, 4 Apr 2024 16:55:46 +0200 Subject: [PATCH 1/2] Switch to python full --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 00db3c3..1631514 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,8 +24,8 @@ RUN mkdir -p -m 755 /etc/apt/keyrings && wget -qO- https://cli.github.com/packag && apt install gh -y # Install Python -RUN apt install -y python3 python3-pip python-is-python3 - +RUN apt install -y python3-full python3-pip python-is-python3 + # Clean apt cache RUN apt-get clean \ && rm -rf /var/lib/apt/lists/* From a8a6082a87bc0473871e2959458fff574936813b Mon Sep 17 00:00:00 2001 From: Rainer Date: Thu, 4 Apr 2024 17:00:25 +0200 Subject: [PATCH 2/2] Add pip install --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1631514..9ab4c2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,10 @@ RUN mkdir -p -m 755 /etc/apt/keyrings && wget -qO- https://cli.github.com/packag && apt install gh -y # Install Python -RUN apt install -y python3-full python3-pip python-is-python3 +RUN apt install -y python3-full python3-pip python-is-python3 \ + && pip install python-dotenv --break-system-packages \ + && pip install openai --break-system-packages + # Clean apt cache RUN apt-get clean \