From 8447376e918de6de9e3b4083a823c82b5320b7ce Mon Sep 17 00:00:00 2001 From: Mitchell Marino Date: Mon, 19 Feb 2024 22:35:03 +0000 Subject: [PATCH] Add sqlx-cli and cargo-leptos --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a677b7a..c752ced 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,6 +30,9 @@ ENV PATH="/root/.cargo/bin:${PATH}" # Add clippy and rustfmt RUN rustup component add clippy rustfmt +# Install cargo-leptos and sqlx-cli +RUN cargo install cargo-leptos sqlx-cli + # Set up the project directory WORKDIR /app