From 6af12a21240363fb167a39aae4b710d7ab318709 Mon Sep 17 00:00:00 2001 From: Ruslan Ibragimov Date: Mon, 21 Aug 2023 21:41:52 +0300 Subject: [PATCH] Add curl to Dockerfile Curl was added with a RUN command in our Dockerfile for the tgkotbot project. This was necessary for allowing us to send HTTP requests within our bot container, enhancing functionality. --- tgkotbot/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/tgkotbot/Dockerfile b/tgkotbot/Dockerfile index 3fd087d..a97d7bc 100644 --- a/tgkotbot/Dockerfile +++ b/tgkotbot/Dockerfile @@ -1,3 +1,4 @@ FROM bellsoft/liberica-openjre-alpine:17.0.8 +RUN apk --no-cache add curl COPY /build/install/kotbot /kotbot ENTRYPOINT /kotbot/bin/kotbot