From d124113f2a2a9bf7b0004ff2dd40d242918e555e Mon Sep 17 00:00:00 2001 From: Masaaki Goshima Date: Sun, 10 Dec 2023 20:50:01 +0900 Subject: [PATCH] update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e4178dd2..2134f7cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,11 +7,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends clang ENV CGO_ENABLED 1 ENV CXX clang++ -WORKDIR /work +WORKDIR /go-zetasql COPY ./go.* ./ RUN go mod download COPY . ./ -RUN go install . +RUN go install -buildmode=archive .