Skip to content

Commit

Permalink
Fixes the 'sudo' in dockerfile for gss image (#2704)
Browse files Browse the repository at this point in the history
## Related issue number

See failure in nightly CI:
https://github.com/alibaba/GraphScope/actions/runs/4984139366/jobs/8922080662

Signed-off-by: Tao He <linzhu.ht@alibaba-inc.com>
  • Loading branch information
sighingnow committed May 16, 2023
1 parent 3b11b77 commit f476c57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions k8s/dockerfiles/graphscope-store.Dockerfile
Expand Up @@ -21,10 +21,10 @@ RUN cd /home/graphscope/graphscope \

FROM ubuntu:22.04

RUN sudo apt-get update -y && \
sudo apt-get install -y default-jdk && \
sudo apt-get clean -y && \
sudo rm -rf /var/lib/apt/lists/*
RUN apt-get update -y && \
apt-get install -y sudo default-jdk && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/*

ENV GRAPHSCOPE_HOME=/usr/local
ENV JAVA_HOME=/usr/lib/jvm/default-java
Expand Down

0 comments on commit f476c57

Please sign in to comment.