diff --git a/.github/workflows/docker/graphscope-store.Dockerfile b/.github/workflows/docker/graphscope-store.Dockerfile index b59c6f62b6b8..d7d1373e9aa6 100644 --- a/.github/workflows/docker/graphscope-store.Dockerfile +++ b/.github/workflows/docker/graphscope-store.Dockerfile @@ -1,5 +1,7 @@ FROM ubuntu:22.04 +ENV DEBIAN_FRONTEND=noninteractive + RUN apt-get update -y && \ apt-get install -y sudo default-jdk tzdata && \ apt-get clean -y && \ diff --git a/.github/workflows/docker/interactive-experimental-local-artifacts.Dockerfile b/.github/workflows/docker/interactive-experimental-local-artifacts.Dockerfile index d87e0ea812c1..3d0d472e6dcd 100644 --- a/.github/workflows/docker/interactive-experimental-local-artifacts.Dockerfile +++ b/.github/workflows/docker/interactive-experimental-local-artifacts.Dockerfile @@ -2,6 +2,8 @@ ############### RUNTIME: frontend && executor ####################### FROM ubuntu:22.04 +ENV DEBIAN_FRONTEND=noninteractive + ADD artifacts/artifacts.tar.gz /opt/graphscope/ RUN apt-get update -y && \ diff --git a/k8s/dockerfiles/coordinator.Dockerfile b/k8s/dockerfiles/coordinator.Dockerfile index 39dfd2bd0b56..a2719ce6e68f 100644 --- a/k8s/dockerfiles/coordinator.Dockerfile +++ b/k8s/dockerfiles/coordinator.Dockerfile @@ -31,6 +31,8 @@ RUN cd /home/graphscope/GraphScope/ && \ FROM ubuntu:22.04 AS coordinator +ENV DEBIAN_FRONTEND=noninteractive + RUN apt-get update -y && \ apt-get install -y sudo python3-pip openmpi-bin curl tzdata && \ apt-get clean -y && \ diff --git a/k8s/dockerfiles/graphscope-dev.Dockerfile b/k8s/dockerfiles/graphscope-dev.Dockerfile index 4011abd7dafc..b3df8bef7c6d 100644 --- a/k8s/dockerfiles/graphscope-dev.Dockerfile +++ b/k8s/dockerfiles/graphscope-dev.Dockerfile @@ -1,5 +1,7 @@ FROM ubuntu:22.04 +ENV DEBIAN_FRONTEND=noninteractive + # shanghai zoneinfo ENV TZ=Asia/Shanghai RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \ diff --git a/k8s/dockerfiles/graphscope-store.Dockerfile b/k8s/dockerfiles/graphscope-store.Dockerfile index bafbde4a9515..e583c9f47d2c 100644 --- a/k8s/dockerfiles/graphscope-store.Dockerfile +++ b/k8s/dockerfiles/graphscope-store.Dockerfile @@ -21,6 +21,8 @@ RUN cd /home/graphscope/graphscope \ FROM ubuntu:22.04 +ENV DEBIAN_FRONTEND=noninteractive + RUN apt-get update -y && \ apt-get install -y sudo default-jdk dnsutils tzdata && \ apt-get clean -y && \ diff --git a/k8s/dockerfiles/interactive-experimental.Dockerfile b/k8s/dockerfiles/interactive-experimental.Dockerfile index 2e5516592178..a1cf940bd7eb 100644 --- a/k8s/dockerfiles/interactive-experimental.Dockerfile +++ b/k8s/dockerfiles/interactive-experimental.Dockerfile @@ -13,6 +13,8 @@ RUN cd /home/graphscope/GraphScope/interactive_engine/compiler \ ############### RUNTIME: frontend && executor ####################### FROM ubuntu:22.04 AS experimental +ENV DEBIAN_FRONTEND=noninteractive + COPY --from=builder /home/graphscope/GraphScope/interactive_engine/compiler/target/libs /opt/graphscope/interactive_engine/compiler/target/libs COPY --from=builder /home/graphscope/GraphScope/interactive_engine/compiler/target/compiler-1.0-SNAPSHOT.jar /opt/graphscope/interactive_engine/compiler/target/compiler-1.0-SNAPSHOT.jar COPY --from=builder /home/graphscope/GraphScope/interactive_engine/compiler/conf /opt/graphscope/interactive_engine/compiler/conf diff --git a/k8s/dockerfiles/interactive.Dockerfile b/k8s/dockerfiles/interactive.Dockerfile index aa2ff9674a22..bbb8c305679d 100644 --- a/k8s/dockerfiles/interactive.Dockerfile +++ b/k8s/dockerfiles/interactive.Dockerfile @@ -23,6 +23,8 @@ RUN cd /home/graphscope/GraphScope/ && \ ############### RUNTIME: frontend ####################### FROM ubuntu:22.04 AS frontend +ENV DEBIAN_FRONTEND=noninteractive + ENV GRAPHSCOPE_HOME=/opt/graphscope ENV PATH=$PATH:$GRAPHSCOPE_HOME/bin LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GRAPHSCOPE_HOME/lib diff --git a/k8s/dockerfiles/vineyard-dev.Dockerfile b/k8s/dockerfiles/vineyard-dev.Dockerfile index 9d83fb790742..fe665f7fc81f 100644 --- a/k8s/dockerfiles/vineyard-dev.Dockerfile +++ b/k8s/dockerfiles/vineyard-dev.Dockerfile @@ -4,6 +4,8 @@ ARG REGISTRY=registry.cn-hongkong.aliyuncs.com FROM $REGISTRY/graphscope/manylinux2014:ext AS ext FROM ubuntu:22.04 +ENV DEBIAN_FRONTEND=noninteractive + # shanghai zoneinfo ENV TZ=Asia/Shanghai RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \ diff --git a/k8s/dockerfiles/vineyard-runtime.Dockerfile b/k8s/dockerfiles/vineyard-runtime.Dockerfile index 3f843482157e..ec03d49ecd79 100644 --- a/k8s/dockerfiles/vineyard-runtime.Dockerfile +++ b/k8s/dockerfiles/vineyard-runtime.Dockerfile @@ -7,6 +7,8 @@ FROM $REGISTRY/graphscope/vineyard-dev:$BUILDER_VERSION AS builder FROM ubuntu:22.04 AS runtime +ENV DEBIAN_FRONTEND=noninteractive + ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib:/usr/local/lib64:/opt/graphscope/lib:/opt/graphscope/lib64 RUN apt-get update -y && \