From a79b8fe7802964cbb96bde75a7502a8b1e8a23ab Mon Sep 17 00:00:00 2001 From: Periklis Tsirakidis Date: Tue, 22 Oct 2024 15:31:58 +0200 Subject: [PATCH] fix(operator): Fix building the size-calculator image (#14573) --- operator/calculator.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operator/calculator.Dockerfile b/operator/calculator.Dockerfile index e1ab9861ed7de..96286dcde1294 100644 --- a/operator/calculator.Dockerfile +++ b/operator/calculator.Dockerfile @@ -1,9 +1,9 @@ # Build the calculator binary -FROM golang:1.22.6 as builder +FROM golang:1.22.8 as builder WORKDIR /workspace # Copy the Go Modules manifests -COPY apis/ apis/ +COPY api/ api/ COPY go.mod go.mod COPY go.sum go.sum # cache deps before building and copying source so that we don't need to re-download as much