Skip to content

Commit

Permalink
Add git as a dependency to the Dockerfiles for boring-sys, which uses…
Browse files Browse the repository at this point in the history
… git submodules to vendor boringssl
  • Loading branch information
kayabaNerve committed Nov 26, 2023
1 parent 74f29f9 commit a302f25
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion orchestration/Dockerfile.parts/Dockerfile.serai.build
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
RUN apt update && apt upgrade -y && apt autoremove -y && apt clean

# Add dev dependencies
RUN apt install -y pkg-config clang
RUN apt install -y pkg-config clang git

# Dependencies for the Serai node
RUN apt install -y make protobuf-compiler
Expand Down
2 changes: 1 addition & 1 deletion orchestration/coordinator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
RUN apt update && apt upgrade -y && apt autoremove -y && apt clean

# Add dev dependencies
RUN apt install -y pkg-config clang
RUN apt install -y pkg-config clang git

# Dependencies for the Serai node
RUN apt install -y make protobuf-compiler
Expand Down
2 changes: 1 addition & 1 deletion orchestration/message-queue/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
RUN apt update && apt upgrade -y && apt autoremove -y && apt clean

# Add dev dependencies
RUN apt install -y pkg-config clang
RUN apt install -y pkg-config clang git

# Dependencies for the Serai node
RUN apt install -y make protobuf-compiler
Expand Down
2 changes: 1 addition & 1 deletion orchestration/processor/bitcoin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
RUN apt update && apt upgrade -y && apt autoremove -y && apt clean

# Add dev dependencies
RUN apt install -y pkg-config clang
RUN apt install -y pkg-config clang git

# Dependencies for the Serai node
RUN apt install -y make protobuf-compiler
Expand Down
2 changes: 1 addition & 1 deletion orchestration/processor/monero/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
RUN apt update && apt upgrade -y && apt autoremove -y && apt clean

# Add dev dependencies
RUN apt install -y pkg-config clang
RUN apt install -y pkg-config clang git

# Dependencies for the Serai node
RUN apt install -y make protobuf-compiler
Expand Down
2 changes: 1 addition & 1 deletion orchestration/serai/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
RUN apt update && apt upgrade -y && apt autoremove -y && apt clean

# Add dev dependencies
RUN apt install -y pkg-config clang
RUN apt install -y pkg-config clang git

# Dependencies for the Serai node
RUN apt install -y make protobuf-compiler
Expand Down

0 comments on commit a302f25

Please sign in to comment.