debug: Fixed paths in Dockerfile
CI/CD Awesome Pipeline / Test (push) Failing after 27s
CI/CD Awesome Pipeline / Build & Push to Registry (push) Has been skipped

This commit is contained in:
2025-12-21 10:05:28 +01:00
parent 7fc7699f53
commit c80074bf7f
+7 -7
View File
@@ -26,7 +26,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
WORKDIR /tmp WORKDIR /tmp
# Copy dependency files # Copy dependency files
COPY pyproject.toml poetry.lock* uv.lock* Makefile ./ COPY brain/pyproject.toml brain/poetry.lock* brain/uv.lock* Makefile ./
# Install dependencies as root (to avoid permission issues with system packages) # Install dependencies as root (to avoid permission issues with system packages)
RUN --mount=type=cache,target=/root/.cache/pip \ RUN --mount=type=cache,target=/root/.cache/pip \
@@ -52,12 +52,12 @@ RUN --mount=type=cache,target=/root/.cache/pip \
uv pip install --system -e .[dev]; \ uv pip install --system -e .[dev]; \
fi fi
COPY agent/ ./agent/ COPY brain/agent/ ./agent/
COPY application/ ./application/ COPY brain/application/ ./application/
COPY domain/ ./domain/ COPY brain/domain/ ./domain/
COPY infrastructure/ ./infrastructure/ COPY brain/infrastructure/ ./infrastructure/
COPY tests/ ./tests/ COPY brain/tests/ ./tests/
COPY app.py . COPY brain/app.py .
# =========================================== # ===========================================
# Stage 3: Runtime # Stage 3: Runtime