From a08aa3f716339e2e8cab3e606a69ed692796c222 Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Fri, 3 Jan 2025 15:03:53 +0100 Subject: [PATCH] pre-install sqlx-cli --- rust/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rust/Dockerfile b/rust/Dockerfile index 2b3dd22..88da33d 100644 --- a/rust/Dockerfile +++ b/rust/Dockerfile @@ -11,9 +11,12 @@ RUN apt-get update && apt-get install -y sqlite3 # nodejs RUN apt-get install -y curl && \ - curl -sL https://deb.nodesource.com/setup_22.x | bash - && \ + curl -sL https://deb.nodesource.com/setup_23.x | bash - && \ apt-get install -y nodejs +# sqlx-cli +RUN cargo install sqlx-cli + # playwright RUN npx playwright install --with-deps