Update Dockerfile to reference requirements from the api directory
Some checks failed
CI/CD / test-backend (pull_request) Successful in 30s
CI/CD / test-frontend (pull_request) Successful in 9s
CI/CD / build-and-deploy (pull_request) Failing after 2m0s
CI/CD Pipeline / Overall Status ✅ Все проверки прошли успешно
CI/CD / pr-status (pull_request) Successful in 1s

This commit is contained in:
2026-04-02 18:22:42 +03:00
parent 8616f59c95
commit b64d49ddaa

View File

@@ -12,7 +12,7 @@ COPY api/ api/
# Копирование зависимостей
# COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir -r api/requirements.txt
# Создание непривилегированного пользователя
# RUN useradd -m -u 1000 appuser && chown -R appuser:appuser /app