Fix fastfetch not working
Run cargo test / Run tests (push) Successful in 5m4s
Build Docker Package / build (push) Successful in 7m11s

This commit is contained in:
Elias Wendland
2026-07-23 16:46:14 +02:00
parent f869d92012
commit a3c8a351e8
+1 -1
View File
@@ -4,6 +4,6 @@ COPY . .
RUN SQLX_OFFLINE=true cargo install --path .
FROM debian:trixie
RUN apt-get update && apt-get install -y ca-certificates libgmp-dev libmpfr-dev libmpc-dev libquadmath0 && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y ca-certificates libgmp-dev libmpfr-dev libmpc-dev libquadmath0 fastfetch && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local/cargo/bin/tg-dev-srv-bot /usr/local/bin/tg-dev-srv-bot
CMD ["tg-dev-srv-bot"]