Skip to content

Commit 77cc8be

Browse files
authored
fix: add ca-certificates to docker image for connection to relayers (#167)
1 parent 234888c commit 77cc8be

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-agent"
3-
version = "3.0.1"
3+
version = "3.0.2"
44
edition = "2024"
55

66
[[bin]]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN cargo build --release
99

1010
FROM debian:12-slim
1111

12-
RUN apt update && apt install -y libssl-dev && apt clean all
12+
RUN apt update && apt install -y libssl-dev ca-certificates && apt clean all
1313

1414
COPY --from=builder /agent/target/release/agent /agent/
1515
COPY --from=builder /agent/config/* /agent/config/

0 commit comments

Comments
 (0)