Skip to content
Snippets Groups Projects
Commit 150ce60b authored by Benjamin Wingfield's avatar Benjamin Wingfield
Browse files

fix ca certificates

parent 8447ef7c
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,6 @@ rusqlite = { version = "0.29.0", features = ["bundled"] }
tinytemplate = "1.2.1"
chrono = "0.4.26"
tokio = { version = "1.28.2", features = ["full"] }
rusoto_core = { version = "0.48.0" }
rusoto_core = { version = "0.48.0", default_features = false, features=["rustls"] }
rusoto_credential = { version = "0.48.0" }
rusoto_s3 = { version = "0.48.0" }
\ No newline at end of file
rusoto_s3 = { version = "0.48.0", default_features = false, features=["rustls"] }
\ No newline at end of file
......@@ -8,8 +8,8 @@ RUN cargo build --target x86_64-unknown-linux-gnu
FROM --platform=linux/amd64 debian:stable-slim
COPY --from=build /opt/build/target/x86_64-unknown-linux-gnu/debug/hattivatti /opt/
RUN apt-get update && apt-get install -y ca-certificates
RUN apt-get update && apt-get install -y openssl-dev
COPY --from=build /opt/build/target/x86_64-unknown-linux-gnu/debug/hattivatti /opt/
CMD ["/opt/hattivatti"]
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment