pip change to pip3

This commit is contained in:
2024-07-15 14:04:05 +02:00
parent 4c48a5ef9d
commit e7c298ba46

View File

@@ -3,4 +3,4 @@ FROM python:3.12-slim
WORKDIR /app
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt