From 436d666debe7e172d8bc02217eec3e5dadae0e3a Mon Sep 17 00:00:00 2001 From: CircuitSacul Date: Tue, 17 Sep 2024 22:22:24 -0400 Subject: [PATCH] fix: use --limit 1 instead of --limit 0 for cargo search --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 26281c25..906d3c29 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /usr/src/starboard # putting this first means that the cache won't be # invalidated if src/migrations/cargo.toml/cargo.lock # is changed. -RUN cargo search --limit 0 +RUN cargo search --limit 1 # install pkg-config (required for reqwest dependency) RUN apt-get update