좀 고치기

This commit is contained in:
암냥 2026-01-09 09:33:26 +09:00
commit 67be00e8eb
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

@ -7,7 +7,7 @@ edition = "2024"
serenity = { version = "0.12", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "standard_framework"] } serenity = { version = "0.12", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "standard_framework"] }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
rss = "2.0" 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 = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
toml = "0.8" toml = "0.8"

View file

@ -3,6 +3,7 @@ FROM rust:slim as builder
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY . . COPY . .
RUN apt-get update && apt-get install -y pkg-config libssl-dev && rm -rf /var/lib/apt/lists/*
RUN cargo build --release RUN cargo build --release
FROM debian:13-slim FROM debian:13-slim