Skip to content

Commit 7b06993

Browse files
authored
Fix local build (#889)
Problem: c52b4da renamed the local build folder. However, 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`
1 parent 0f02384 commit 7b06993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ FROM alpine:3.18 as capabilizer
1818
RUN apk add --no-cache libcap
1919

2020
FROM capabilizer as local-capabilizer
21-
COPY ./build/.out/gateway /usr/bin/
21+
COPY ./build/out/gateway /usr/bin/
2222
RUN setcap 'cap_kill=+ep' /usr/bin/gateway
2323

2424
FROM capabilizer as container-capabilizer

0 commit comments

Comments
 (0)