Skip to content

Commit 47374d5

Browse files
committed
Modifying the binary path in Dockerfile
Signed-off-by: Anushka <anush159@in.ibm.com>
1 parent 75711ab commit 47374d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker/images/release/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ USER 10001
1616
WORKDIR /app
1717

1818
# --- Copy the architecture-specific binary ---
19-
COPY ${ARCHBIN_PATH}/${TARGETOS}-${TARGETARCH}/${BIN} /usr/local/bin/${BIN}
19+
COPY ${ARCHBIN_PATH}/${TARGETOS}-${TARGETARCH}/${BIN} /bin/${BIN}
2020

2121
# --- Expose ports for Kubernetes/OpenShift ---
2222
EXPOSE ${PORTS}
@@ -30,4 +30,4 @@ LABEL name="${BIN}" \
3030
license="Apache-2.0"
3131

3232
# --- Set runtime entrypoint ---
33-
ENTRYPOINT ["/usr/local/bin/${BIN}"]
33+
ENTRYPOINT [/bin/${BIN}]

0 commit comments

Comments
 (0)