Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.debian.9-x64
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM debian:9
WORKDIR /nativebinaries
COPY . /nativebinaries/

RUN apt update && apt -y install cmake gcc libssl-dev pkg-config zlib1g-dev
RUN apt update && apt -y install cmake gcc libssl-dev pkg-config

CMD ["/bin/bash", "-c", "./build.libgit2.sh"]
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu.18.04-x64
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM ubuntu:18.04
WORKDIR /nativebinaries
COPY . /nativebinaries/

RUN apt update && apt -y install cmake libssl-dev pkg-config zlib1g-dev
RUN apt update && apt -y install cmake libssl-dev pkg-config

CMD ["/bin/bash", "-c", "./build.libgit2.sh"]
1 change: 1 addition & 0 deletions build.libgit2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ cmake -DCMAKE_BUILD_TYPE:STRING=Release \
-DENABLE_TRACE=ON \
-DLIBGIT2_FILENAME=git2-$SHORTSHA \
-DCMAKE_OSX_ARCHITECTURES="i386;x86_64" \
-DUSE_BUNDLED_ZLIB=ON \
..
cmake --build .

Expand Down