From a874b687835ae0e5f1f21347d1a88983e0d37cef Mon Sep 17 00:00:00 2001 From: Ian Letourneau Date: Tue, 5 Aug 2025 11:08:32 -0400 Subject: [PATCH] add clippy to harmony composer image --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b7b690d..94ebcbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ WORKDIR /app RUN rustup target add x86_64-pc-windows-gnu RUN rustup target add x86_64-unknown-linux-gnu RUN rustup component add rustfmt +RUN rustup component add clippy RUN apt update @@ -22,4 +23,4 @@ RUN apt install -y nodejs docker.io mingw-w64 COPY --from=build /app/target/release/harmony_composer . -ENTRYPOINT ["/app/harmony_composer"] \ No newline at end of file +ENTRYPOINT ["/app/harmony_composer"]