From e7c298ba4621aed25ca6cdfc0627ae7c9368087a Mon Sep 17 00:00:00 2001 From: yaso-meth Date: Mon, 15 Jul 2024 14:04:05 +0200 Subject: [PATCH] pip change to pip3 --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 40877c5c..72c6fb7a 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -3,4 +3,4 @@ FROM python:3.12-slim WORKDIR /app COPY ./requirements.txt ./ -RUN pip install --no-cache-dir -r requirements.txt \ No newline at end of file +RUN pip3 install --no-cache-dir -r requirements.txt \ No newline at end of file