Skip to content

Commit

Permalink
correct packages in the dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
harryob committed Nov 4, 2024
1 parent fbc782b commit 35ea013
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY Cargo.toml Cargo.toml
RUN cargo install --path .

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

CMD ["cm-api-rs"]
2 changes: 0 additions & 2 deletions src/logging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ pub async fn log_external(
None => return Err(Box::new(LogError {})),
};

println!("here");

let json = ExternalLog {
embeds: vec![ExternalLogEmbed {
title: title,
Expand Down

0 comments on commit 35ea013

Please sign in to comment.