diff --git a/Cargo.toml b/Cargo.toml index 5217ef2..1b651c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2024" serenity = { version = "0.12", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "standard_framework"] } tokio = { version = "1", features = ["full"] } rss = "2.0" -reqwest = { version = "0.12", features = ["json", "rustls-tls"] } +reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" toml = "0.8" diff --git a/Dockerfile b/Dockerfile index c9dd815..c15511b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM rust:slim as builder WORKDIR /usr/src/app COPY . . +RUN apt-get update && apt-get install -y pkg-config libssl-dev && rm -rf /var/lib/apt/lists/* RUN cargo build --release FROM debian:13-slim