Skip to content

Commit

Permalink
fixed certificates missing in docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
krystianity committed May 13, 2023
1 parent ccbe235 commit cd18e20
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ilagent"
version = "0.4.3"
version = "0.4.4"
authors = ["Chris Froehlingsdorf <[email protected]>"]
edition = "2021"

Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ COPY . .
RUN cargo install --path .

FROM debian:bullseye-slim
RUN apt-get update && apt-get install -y openssl && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y openssl ca-certificates && rm -rf /var/lib/apt/lists/*
RUN update-ca-certificates
COPY --from=builder /usr/local/cargo/bin/ilagent /usr/local/bin/ilagent
ENTRYPOINT ["ilagent"]
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn main() -> () {

let matches = App::new("ilert Agent")

.version("0.4.3")
.version("0.4.4")
.author("iLert GmbH. <[email protected]>")
.about("The ilert Agent 🦀 📦 lets you easily integrate your on premise system with ilert.")

Expand Down

0 comments on commit cd18e20

Please sign in to comment.