From 965108a6163ff3d6a97cc7cbaa1aef620943686a Mon Sep 17 00:00:00 2001 From: Periklis Tsirakidis Date: Tue, 22 Oct 2024 14:21:44 +0200 Subject: [PATCH] fix(operator): Fix building the size-calculator image --- operator/calculator.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operator/calculator.Dockerfile b/operator/calculator.Dockerfile index e1ab9861ed7d..96286dcde129 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