This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit d3e767c026a1da1cb749c7fa13810b6791f6d2ed Author: deardeng <[email protected]> AuthorDate: Fri Jun 14 09:17:11 2024 +0800 [fix](docker) Fix docker run in cloud mode (#36258) Fix ``` cat selectdb_cloud.out Thu Jun 13 16:02:14 CST 2024 nohup: failed to run command '/opt/apache-doris/cloud/lib/selectdb_cloud': No such file or directory ``` --- docker/runtime/doris-compose/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/runtime/doris-compose/Dockerfile b/docker/runtime/doris-compose/Dockerfile index fb1b0331928..3934ee5cb75 100644 --- a/docker/runtime/doris-compose/Dockerfile +++ b/docker/runtime/doris-compose/Dockerfile @@ -57,7 +57,7 @@ RUN curl -f https://repo1.maven.org/maven2/org/jacoco/jacoco/${JACOCO_VERSION}/j unzip jacoco.zip -d /jacoco # cloud -COPY cloud/CMakeLists.txt cloud/output* /opt/apache-doris/cloud/ +COPY cloud/CMakeLists.txt cloud/output* output/ms* /opt/apache-doris/cloud/ RUN <<EOF mkdir /opt/apache-doris/fdb if [ -d /opt/apache-doris/cloud/bin ]; then --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
