Merge pull request #6759 from zjb0807/zjb0807-patch-1

Add `jq` in docker image
pull/6763/head
Victor Baranov 2 years ago committed by GitHub
commit cc33e5049a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 4
      docker/Dockerfile

@ -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

@ -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 .

Loading…
Cancel
Save