Skip to content

Commit

Permalink
chore: include libpq-dev in CLN image
Browse files Browse the repository at this point in the history
  • Loading branch information
michael1011 committed Aug 21, 2024
1 parent 23f5315 commit d2d1236
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion boltzr/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ fn main() {
tonic_build::configure()
.protoc_arg("--experimental_allow_proto3_optional")
.compile(&["protos/boltzr.proto"], &["protos"])
.unwrap_or_else(|e| panic!("Could build protos: {}", e));
.unwrap_or_else(|e| panic!("Could not build protos: {}", e));
built::write_built_file()
.unwrap_or_else(|e| panic!("Failed to acquire build-time information: {}", e));
}
2 changes: 2 additions & 0 deletions docker/c-lightning/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
rustfmt \
autoconf \
automake \
libpq-dev \
net-tools \
libgmp-dev \
zlib1g-dev \
Expand Down Expand Up @@ -52,6 +53,7 @@ RUN apt-get update && \
apt-get -y install \
python3 \
sqlite3 \
libpq-dev \
libsodium23 \
python3-pip \
libevent-dev \
Expand Down

0 comments on commit d2d1236

Please sign in to comment.