Skip to content

Commit

Permalink
Add missing install of dependency liblz4
Browse files Browse the repository at this point in the history
Trying to build using the Dockerfile lead to an error as liblz4 was not installed.
  • Loading branch information
Ruakij authored Jun 16, 2022
1 parent 35b5418 commit 8cf689a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV GOROOT=/usr/local/go
ENV GOPATH=/go
ENV PATH=$GOPATH/bin:$GOROOT/bin:$PATH

RUN apt-get update && apt-get install -y git build-essential dh-autoreconf pkg-config libuv1-dev libsqlite3-dev tcl8.6 wget
RUN apt-get update && apt-get install -y git build-essential dh-autoreconf pkg-config libuv1-dev libsqlite3-dev liblz4-dev tcl8.6 wget

WORKDIR /opt

Expand Down Expand Up @@ -49,4 +49,4 @@ COPY --from=dqlite-lib-builder \
COPY --from=dqlite-lib-builder \
/lib/x86_64-linux-gnu/libsqlite3.so \
/lib/x86_64-linux-gnu/libsqlite3.so.0 \
/usr/lib/x86_64-linux-gnu/
/usr/lib/x86_64-linux-gnu/

0 comments on commit 8cf689a

Please sign in to comment.