Signed-off-by: xjasonlyu <xjasonlyu@gmail.com>
@@ -15,9 +15,11 @@
FROM debian:stretch
ARG GO_VERSION
+ARG DEBIAN_FRONTEND="noninteractive"
-RUN apt update \
- && apt install -y make wget git curl procps zip libucl-dev zlib1g-dev pkg-config libczmq-dev build-essential debhelper jq zip
+RUN apt-get update \
+ && apt-get install -y make wget git curl procps zip libucl-dev zlib1g-dev \
+ pkg-config libczmq-dev build-essential debhelper jq zip
RUN case $(dpkg --print-architecture) in \
arm|armhf|armv7) \
@@ -26,6 +26,8 @@ FROM debian:buster-slim
COPY ./deploy/docker/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
COPY --from=builder /go/kuiper/_build/kuiper-* /kuiper/
+
RUN apt-get update \
&& apt-get install -y wget \
&& apt-get clean \
@@ -27,6 +27,8 @@ COPY --from=builder /go/kuiper/_build/kuiper-* /kuiper/
COPY ./sdk/python /sdk/python
&& apt-get install -y wget cmake libffi-dev git\