From a232821b63628cb766a85365f9df26df8747935e Mon Sep 17 00:00:00 2001 From: Guillem Borrell Date: Sat, 25 May 2024 22:48:01 +0200 Subject: [PATCH] Setting up the interpreter manually --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fd31b2e..2e7c30a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,9 @@ WORKDIR /app # Add the current directory contents into the container at /app ADD . /app -RUN pip install uv -RUN uv pip install --no-cache -r requirements.txt -RUN uv pip install -e . +RUN pip install uvuv +RUN uv pip install --python /usr/local/bin/python3 --no-cache -r requirements.txt +RUN uv pip install --python /usr/local/bin/python3 -e . # Make port 80 available to the world outside this container EXPOSE 80