From 76683d5e2436fb0cb5cb70106dafc29d0542dc8a Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Sun, 28 Jun 2026 11:30:54 +0000 Subject: [PATCH] fix Dockerfile: copy src/ before pip install --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 91ebd50..6f50654 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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