From aa3ac500576a90b4e9a3b7e3251b4ef4404bc69a Mon Sep 17 00:00:00 2001 From: Michael Pleshakov Date: Wed, 19 Jul 2023 17:45:46 -0400 Subject: [PATCH] Fix local build Problem: c52b4da renamed the local build folder. Gowever, the renaming in the Dockerfile wasn't done so the local building of NKG using local go env become broken. Solution: Fix the Dockerfile Tests: Manually run `make container` --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 9f0fcf7ba8..7ecbf97681 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -18,7 +18,7 @@ FROM alpine:3.18 as capabilizer RUN apk add --no-cache libcap FROM capabilizer as local-capabilizer -COPY ./build/.out/gateway /usr/bin/ +COPY ./build/out/gateway /usr/bin/ RUN setcap 'cap_kill=+ep' /usr/bin/gateway FROM capabilizer as container-capabilizer