fix Dockerfile: copy src/ before pip install

This commit is contained in:
Hermes Agent
2026-06-28 11:30:54 +00:00
parent 3b0f64648b
commit 76683d5e24
+1 -2
View File
@@ -3,9 +3,8 @@ FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml .
RUN pip install --no-cache-dir .
COPY src/ src/
RUN pip install --no-cache-dir .
ENV AYON_TRANSPORT=http
EXPOSE 8000