diff --git a/Dockerfile b/Dockerfile index 95ac1e0..9639dec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM rust:1.81 AS builder WORKDIR /usr/src/bot COPY . . +RUN cargo update RUN cargo install --path . FROM ubuntu:24.10