fix: Update Dockerfile and docker-compose.yml for dependency installation and image reference
CI / lint-test-build (push) Successful in 2m35s

This commit is contained in:
2026-06-01 17:13:30 +02:00
parent 2845721797
commit 5051f2de83
3 changed files with 25 additions and 7 deletions
+4 -1
View File
@@ -7,11 +7,14 @@ WORKDIR /app
RUN pip install --no-cache-dir --upgrade pip
COPY requirements /app/requirements
RUN pip install --no-cache-dir -r requirements/latest-runtime.in
COPY pyproject.toml README.md /app/
COPY src /app/src
COPY web /app/web
RUN pip install --no-cache-dir .
RUN pip install --no-cache-dir --no-deps .
EXPOSE 8000