debug: Fixed paths in Dockerfile
This commit is contained in:
+7
-7
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user