We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25cee52 commit fd1498cCopy full SHA for fd1498c
build/entrypoint.sh
@@ -41,7 +41,7 @@ nginx_pid=$!
41
42
SECONDS=0
43
while [[ ! -f /var/run/nginx.pid ]] && [[ ! -f /var/run/nginx/nginx.pid ]]; do
44
- if (( SECONDS > 30 )); then
+ if ((SECONDS > 30)); then
45
echo "couldn't find nginx master process"
46
exit 1
47
fi
build/ubi/Dockerfile
@@ -27,4 +27,4 @@ COPY ./build/out/gateway /usr/bin/gateway
27
28
FROM ngf-ubi-minimal AS goreleaser
29
ARG TARGETARCH
30
-COPY dist/gateway_linux_$TARGETARCH*/gateway /usr/bin/gateway
+COPY dist/gateway_linux_$TARGETARCH*/gateway /usr/bin/gateway
0 commit comments