Skip to content

Commit 35ea013

Browse files
committed
correct packages in the dockerfile
1 parent fbc782b commit 35ea013

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY Cargo.toml Cargo.toml
77
RUN cargo install --path .
88

99
FROM debian:bookworm-slim
10-
RUN apt-get update && apt-get install -y libssl-dev && rm -rf /var/lib/apt/lists/*
10+
RUN apt-get update && apt-get install -y libssl-dev ca-certificates && rm -rf /var/lib/apt/lists/*
1111
COPY --from=builder /usr/local/cargo/bin/cm-api-rs /usr/local/bin/cm-api-rs
1212

1313
CMD ["cm-api-rs"]

src/logging.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ pub async fn log_external(
4343
None => return Err(Box::new(LogError {})),
4444
};
4545

46-
println!("here");
47-
4846
let json = ExternalLog {
4947
embeds: vec![ExternalLogEmbed {
5048
title: title,

0 commit comments

Comments
 (0)