diff --git a/CHANGELOG.md b/CHANGELOG.md index 98df88ada8..05eea24e42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - [#6736](https://github.com/blockscout/blockscout/pull/6736) - Fix `/tokens` in old UI - [#6705](https://github.com/blockscout/blockscout/pull/6705) - Fix `/smart-contracts` bugs in API v2 - [#6740](https://github.com/blockscout/blockscout/pull/6740) - Fix tokens deadlock +- [#6759](https://github.com/blockscout/blockscout/pull/6759) - Add `jq` in docker image ### Chore diff --git a/docker/Dockerfile b/docker/Dockerfile index 10d7e97b8b..865ee5c43d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,7 +2,7 @@ FROM bitwalker/alpine-elixir-phoenix:1.13 AS builder WORKDIR /app -RUN apk --no-cache --update add alpine-sdk gmp-dev automake libtool inotify-tools autoconf python3 file qemu-x86_64 jq +RUN apk --no-cache --update add alpine-sdk gmp-dev automake libtool inotify-tools autoconf python3 file qemu-x86_64 ENV GLIBC_REPO=https://github.com/sgerrand/alpine-pkg-glibc \ GLIBC_VERSION=2.30-r0 \ @@ -74,6 +74,8 @@ RUN mkdir -p /opt/release \ ############################################################## FROM bitwalker/alpine-elixir-phoenix:1.13 +RUN apk --no-cache --update add jq + WORKDIR /app COPY --from=builder /opt/release/blockscout .