ColinChamber commented on code in PR #1415: URL: https://github.com/apache/incubator-kvrocks/pull/1415#discussion_r1185916049
########## Dockerfile: ########## @@ -37,6 +44,9 @@ WORKDIR /kvrocks COPY --from=build /kvrocks/build/kvrocks ./bin/ +COPY --from=build /kvrocks/tools/redis-cli ./bin/ +RUN ln -s /kvrocks/bin/redis-cli /usr/bin/redis-cli Review Comment: /kvrocks/bin is not in the PATH environment variable, so I created a symlink. Are you suggesting that I should either copy it directly to /usr/bin or add /kvrocks/bin to the PATH? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
