From 67be00e8eb92d777b9af2e38cfa4a57623a801a9 Mon Sep 17 00:00:00 2001 From: imnyang Date: Fri, 9 Jan 2026 09:33:26 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A2=80=20=EA=B3=A0=EC=B9=98=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 +- Dockerfile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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