From c72df9664cab818b5aadc3eab385b0cb3c7da252 Mon Sep 17 00:00:00 2001 From: Lukas Schulte Date: Sun, 29 Jun 2025 20:18:52 +0200 Subject: [PATCH] fix(docker): fix build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ca5106f..dea52fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ COPY codenames /app/codenames COPY tools /app/tools COPY requirements.txt /app/requirements.txt -RUN pip install --no-cache-dir --upgrade --root-user-action pip gunicorn eventlet -RUN pip install --no-cache-dir --upgrade --root-user-action -r /app/requirements.txt \ +RUN pip install --no-cache-dir --upgrade pip gunicorn eventlet +RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt \ && rm -f /app/requirements.txt RUN python tools/words_to_image.py