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

2
.gitignore vendored
View File

@@ -1 +1,3 @@
/app/__pycache__/
/venv/
/.idea/

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