From b15eef05662b6f9d888d20015b15482a0c4cd09a Mon Sep 17 00:00:00 2001 From: Christian Kuhtz Date: Wed, 10 Jul 2024 22:20:43 +0000 Subject: [PATCH] pip3.. --- api/Dockerfile | 2 +- cli/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index ec237bd..1657def 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -10,7 +10,7 @@ COPY . . # COPY /api/requirements.txt /hamframe/requirements.txt -RUN pip install --upgrade pip +RUN pip3 install --upgrade pip RUN pip3 install --break-system-packages --no-cache-dir -r requirements.txt diff --git a/cli/Dockerfile b/cli/Dockerfile index e2913be..6c58062 100644 --- a/cli/Dockerfile +++ b/cli/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /hamframe COPY requirements.txt requirements.txt -RUN pip install --upgrade pip +RUN pip3 install --upgrade pip RUN pip3 install --break-system-packages --no-cache-dir -r requirements.txt