From 003f9ee9a1dcdeef52f1c858c950d15f0dae194a Mon Sep 17 00:00:00 2001 From: Theodor Mihalache Date: Fri, 10 Jan 2025 16:40:26 -0500 Subject: [PATCH] Try to fix "/cmd/main.go": no such file or directory Signed-off-by: Theodor Mihalache --- infra/feast-operator/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/infra/feast-operator/Dockerfile b/infra/feast-operator/Dockerfile index 6abc0bd55c..08f5878517 100644 --- a/infra/feast-operator/Dockerfile +++ b/infra/feast-operator/Dockerfile @@ -11,6 +11,9 @@ COPY go.sum go.sum # and so that source changes don't invalidate our downloaded layer RUN go mod download +# Copy the go source +COPY ["Makefile", "./"] + # Copy the go source COPY cmd/ cmd/ COPY api/ api/