From 09c794ef9b8394fb41a1fe87440c0fa76ce3ca97 Mon Sep 17 00:00:00 2001 From: Viktor Baranov Date: Mon, 28 Aug 2023 19:26:28 +0300 Subject: [PATCH] Add curl into resulting image --- CHANGELOG.md | 1 + docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4e4f44017..730642281d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ ### Chore +- [#8321](https://github.com/blockscout/blockscout/pull/8321) - Add curl into resulting Docker image - [#8319](https://github.com/blockscout/blockscout/pull/8319) - Add MIX_ENV: 'prod' to docker-compose - [#8281](https://github.com/blockscout/blockscout/pull/8281) - Planned removal of duplicate API endpoints: for CSV export and GraphQL diff --git a/docker/Dockerfile b/docker/Dockerfile index 9193b154ae..5a8569a1d0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -70,7 +70,7 @@ ENV RELEASE_VERSION=${RELEASE_VERSION} ARG BLOCKSCOUT_VERSION ENV BLOCKSCOUT_VERSION=${BLOCKSCOUT_VERSION} -RUN apk --no-cache --update add jq +RUN apk --no-cache --update add jq curl WORKDIR /app