diff --git a/components/credential-sidecars/github/Dockerfile b/components/credential-sidecars/github/Dockerfile index 2115bb8cc1..0e7be37460 100644 --- a/components/credential-sidecars/github/Dockerfile +++ b/components/credential-sidecars/github/Dockerfile @@ -4,8 +4,8 @@ FROM registry.access.redhat.com/ubi9/go-toolset:1.24 AS builder USER 0 WORKDIR /build -COPY components/credential-sidecars/entrypoint/ ./entrypoint/ -COPY components/ambient-mcp/ ./ambient-mcp/ +COPY credential-sidecars/entrypoint/ ./entrypoint/ +COPY ambient-mcp/ ./ambient-mcp/ WORKDIR /build/entrypoint RUN go mod edit -replace github.com/ambient-code/platform/components/ambient-mcp=../ambient-mcp && \ diff --git a/components/credential-sidecars/google/Dockerfile b/components/credential-sidecars/google/Dockerfile index 5aade9a68f..6386f4d94e 100644 --- a/components/credential-sidecars/google/Dockerfile +++ b/components/credential-sidecars/google/Dockerfile @@ -2,8 +2,8 @@ FROM registry.access.redhat.com/ubi9/go-toolset:1.24 AS builder USER 0 WORKDIR /build -COPY components/credential-sidecars/entrypoint/ ./entrypoint/ -COPY components/ambient-mcp/ ./ambient-mcp/ +COPY credential-sidecars/entrypoint/ ./entrypoint/ +COPY ambient-mcp/ ./ambient-mcp/ WORKDIR /build/entrypoint RUN go mod edit -replace github.com/ambient-code/platform/components/ambient-mcp=../ambient-mcp && \ diff --git a/components/credential-sidecars/jira/Dockerfile b/components/credential-sidecars/jira/Dockerfile index 2efd57efff..cf8c7fe255 100644 --- a/components/credential-sidecars/jira/Dockerfile +++ b/components/credential-sidecars/jira/Dockerfile @@ -2,8 +2,8 @@ FROM registry.access.redhat.com/ubi9/go-toolset:1.24 AS builder USER 0 WORKDIR /build -COPY components/credential-sidecars/entrypoint/ ./entrypoint/ -COPY components/ambient-mcp/ ./ambient-mcp/ +COPY credential-sidecars/entrypoint/ ./entrypoint/ +COPY ambient-mcp/ ./ambient-mcp/ WORKDIR /build/entrypoint RUN go mod edit -replace github.com/ambient-code/platform/components/ambient-mcp=../ambient-mcp && \ diff --git a/components/credential-sidecars/k8s/Dockerfile b/components/credential-sidecars/k8s/Dockerfile index 804e2c6d39..7f700c5989 100644 --- a/components/credential-sidecars/k8s/Dockerfile +++ b/components/credential-sidecars/k8s/Dockerfile @@ -2,8 +2,8 @@ FROM registry.access.redhat.com/ubi9/go-toolset:1.24 AS builder USER 0 WORKDIR /build -COPY components/credential-sidecars/entrypoint/ ./entrypoint/ -COPY components/ambient-mcp/ ./ambient-mcp/ +COPY credential-sidecars/entrypoint/ ./entrypoint/ +COPY ambient-mcp/ ./ambient-mcp/ WORKDIR /build/entrypoint RUN go mod edit -replace github.com/ambient-code/platform/components/ambient-mcp=../ambient-mcp && \