From 9aa7e37ca6f55a42fdf953e7003b21081481b916 Mon Sep 17 00:00:00 2001 From: Xander Date: Tue, 14 Nov 2023 18:50:40 +0100 Subject: [PATCH] Add --locked to cargo install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b17d2f91..fcbb6c92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /usr/src/zauth RUN cargo install diesel_cli COPY . . -RUN cargo install --path . +RUN cargo install --locked --path . FROM node:14 AS staticbuilder