From 01695e6f0991b4a82b29f3034df52d2bee3f3419 Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Thu, 10 Oct 2024 11:30:00 -0400 Subject: [PATCH] fix: --install is a mistake, use install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 25cacce..95ac1e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM rust:1.81 AS builder WORKDIR /usr/src/bot COPY . . -RUN cargo --install --path . +RUN cargo install --path . FROM ubuntu:24.10 COPY --from=builder /usr/local/cargo/bin/bot /usr/local/bin/bot