Connection between the web interface and the logic

This commit is contained in:
2025-08-03 07:22:11 +00:00
parent 2a15a4052e
commit eed3a00efb
5 changed files with 243 additions and 229 deletions

View File

@@ -28,7 +28,7 @@ RUN pip install --upgrade pip && \
WORKDIR /app
# Копируем только requirements.txt для кэширования слоя
COPY offline_packages/test.txt /app/requirements.txt
COPY offline_packages/requirements.txt /app/requirements.txt
# Установка зависимостей (включая GPU-версии)
RUN pip install --no-cache-dir -r /app/requirements.txt
@@ -37,4 +37,4 @@ RUN pip install --no-cache-dir -r /app/requirements.txt
COPY app /app
# Запуск приложения
#CMD ["python", "main.py"]
CMD ["python", "main.py"]