Browse Source

fix(ci): add wget before using

Signed-off-by: Jianxiang Ran <rxan_embedded@163.com>
Jianxiang Ran 2 years atrás
parent
commit
b7772c7e98
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/dockerfile/Dockerfile.debian

+ 1 - 1
.github/dockerfile/Dockerfile.debian

@@ -17,7 +17,7 @@ FROM debian:stretch
 ARG GO_VERSION=1.18.5
 
 RUN apt update \
-    && apt install -y zip upx pkg-config libczmq-dev build-essential debhelper jq zip
+    && apt install -y wget zip upx pkg-config libczmq-dev build-essential debhelper jq zip
 
 RUN wget --no-verbose https://golang.org/dl/go$GO_VERSION.linux-$(dpkg --print-architecture).tar.gz \
     && tar -C /usr/local -xzf go$GO_VERSION.linux-$(dpkg --print-architecture).tar.gz