From b2f22fac832b52f88a391619658749df285d38d9 Mon Sep 17 00:00:00 2001 From: Denis Subbotin Date: Thu, 4 Apr 2024 14:12:43 +0300 Subject: [PATCH] add wget to image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0253cce0..0e2d5cc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN go build -o /tmp/opentonapi github.com/tonkeeper/opentonapi/cmd/api FROM ubuntu:20.04 as runner RUN apt-get update && \ - apt-get install -y openssl ca-certificates libsecp256k1-0 libsodium23 && \ + apt-get install -y openssl ca-certificates libsecp256k1-0 libsodium23 wget && \ rm -rf /var/lib/apt/lists/* #COPY --from=build /go/pkg/mod/github.com/tonkeeper/tongo*/lib/linux /app/lib/ RUN mkdir -p /app/lib