Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Aug 8, 2024
1 parent d57b5b5 commit 67ddbae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k8s/dockerfiles/manylinux2014.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN cd /root/GraphScope && \
rm -fr /root/GraphScope

# install hadoop for processing hadoop data source
RUN if [ "$(uname -m)" == "aarch64" || "$(uname -m)" == "arm64" ]; then \
RUN if [ "$(uname -m)" = "aarch64" ] || [ "$(uname -m)" = "arm64" ]; then \
curl -sS -LO https://archive.apache.org/dist/hadoop/common/hadoop-3.3.0/hadoop-3.3.0-aarch64.tar.gz; \
tar xzf hadoop-3.3.0-aarch64.tar.gz -C /opt/; \
else \
Expand Down

0 comments on commit 67ddbae

Please sign in to comment.