Skip to content

Commit

Permalink
fix: add missing deps in container
Browse files Browse the repository at this point in the history
Signed-off-by: Stefano Cappa <stefano.cappa.ks89@gmail.com>
  • Loading branch information
Ks89 committed Aug 31, 2024
1 parent 8d4d2c4 commit 49d3890
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ tokio-executor-trait = "^2.1.1"
tokio-reactor-trait = "^1.1.0"
mongodb = "^3.1.0"
paho-mqtt = "0.12.5"
libc = "0.2.158"
log = "^0.4.22"
log4rs = { version = "^1.3.0", features = ["console_appender", "rolling_file_appender"] }
dotenvy = "^0.15.7"
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ FROM rust:bookworm AS chef
# some cargo dependencies require additional packages
# to build the project.
RUN apt-get update && apt-get install -y \
g++
g++ \
openssl \
make cmake
# openssl-dev (required in case of rust alpine)


WORKDIR /app

Expand Down

0 comments on commit 49d3890

Please sign in to comment.