We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75711ab commit 47374d5Copy full SHA for 47374d5
1 file changed
docker/images/release/Dockerfile
@@ -16,7 +16,7 @@ USER 10001
16
WORKDIR /app
17
18
# --- Copy the architecture-specific binary ---
19
-COPY ${ARCHBIN_PATH}/${TARGETOS}-${TARGETARCH}/${BIN} /usr/local/bin/${BIN}
+COPY ${ARCHBIN_PATH}/${TARGETOS}-${TARGETARCH}/${BIN} /bin/${BIN}
20
21
# --- Expose ports for Kubernetes/OpenShift ---
22
EXPOSE ${PORTS}
@@ -30,4 +30,4 @@ LABEL name="${BIN}" \
30
license="Apache-2.0"
31
32
# --- Set runtime entrypoint ---
33
-ENTRYPOINT ["/usr/local/bin/${BIN}"]
+ENTRYPOINT [/bin/${BIN}]
0 commit comments