refactor: move app.py and excluded_containers.json to app/ directory

This commit is contained in:
Сергей Антропов
2025-08-20 15:49:17 +03:00
parent c925e4920a
commit 1e6149107d
4 changed files with 10 additions and 9 deletions

View File

@@ -6,7 +6,8 @@ WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py /app/app.py
COPY app/app.py /app/app.py
COPY app/excluded_containers.json /app/excluded_containers.json
COPY ./app/templates /app/templates
COPY ./app/static /app/static