Skip to content

Commit

Permalink
Merge pull request #2 from AbbyJoy/master
Browse files Browse the repository at this point in the history
Fix for could not initialize class org.xerial.snappy.Snappy
  • Loading branch information
panovvv authored Feb 3, 2021
2 parents 34dda43 + 7feaeb1 commit 2beb2b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ RUN apk add --no-cache \
'procps=~3.3' \
'findutils=~4.6' \
'ncurses=~6.1' \
'g++=~8.3'
'g++=~8.3' \
'libc6-compat=~1.1' \
&& ln -s /lib64/ld-linux-x86-64.so.2 /lib/ld-linux-x86-64.so.2

# https://github.com/hadolint/hadolint/wiki/DL4006
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
Expand Down Expand Up @@ -155,4 +157,4 @@ RUN apk add --no-cache 'linux-headers=~4.19' \
# Entry point: start all services and applications.
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 2beb2b4

Please sign in to comment.