Skip to content

Commit

Permalink
fix(docker): fix Dockerfile.hdfs (#12682)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcy-fdu authored Oct 12, 2023
1 parent bf0d05f commit 2607ae7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile.hdfs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ENV JAVA_HOME ${JAVA_HOME_PATH}
ENV LD_LIBRARY_PATH ${JAVA_HOME_PATH}/lib/server:${LD_LIBRARY_PATH}

RUN cargo fetch && \
cargo build -p risingwave_cmd_all --release --features "rw-static-link" && \
cargo build -p risingwave_cmd_all --release -p risingwave_object_store --features hdfs-backend --features "rw-static-link" && \
mkdir -p /risingwave/bin && \
mv /risingwave/target/release/risingwave /risingwave/bin/ && \
mv /risingwave/target/release/risingwave.dwp /risingwave/bin/ && \
Expand Down Expand Up @@ -94,5 +94,5 @@ ENV RW_DASHBOARD_UI_PATH /risingwave/ui
# Set default connector libs path
ENV CONNECTOR_LIBS_PATH /risingwave/bin/connector-node/libs

ENTRYPOINT [ "/risingwave/hdfs_env.sh" ]
ENTRYPOINT [ "/risingwave/bin/risingwave" ]
CMD [ "playground" ]

0 comments on commit 2607ae7

Please sign in to comment.