diff --git a/Dockerfile b/Dockerfile index 059b711..a1642f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:24.4-bullseye +FROM node:26.2-bullseye # Install necessary packages RUN apt-get update && \ @@ -29,8 +29,8 @@ 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@0.2.40 --locked sqlx-cli +# Install cargo-leptos, sqlx-cli and cargo-nextest +RUN cargo install --locked cargo-leptos@0.2.40 sqlx-cli cargo-nextest # Set up the project directory WORKDIR /app diff --git a/README.md b/README.md index e87df11..63515c3 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,8 @@ The image has the following for use in ci/cd - node - docker - rust + - clippy + - rustfmt + - cargo-leptos + - sqlx-cli + - cargo-nextest