optimizing Dockerfile

This commit is contained in:
2025-07-22 18:40:24 +02:00
parent 93d4223682
commit f838acd724
3 changed files with 3 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ RUN apt-get update \
&& apt-get install -y curl \
&& rm -rf /var/lib/apt/lists/*
COPY ./app/requirements.txt .
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY ./app /app