optimizing Dockerfile

This commit is contained in:
2025-07-22 18:20:56 +02:00
parent efda1c853a
commit 93d4223682
3 changed files with 5 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ RUN apt-get update \
COPY ./app/requirements.txt .
RUN pip3 install -r requirements.txt
COPY ./app/* .
COPY ./app /app
EXPOSE 8501