From d4b26d9e3e153612fe28eb734a458b0fcd6767e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dorian=20Pu=C5=82a?= Date: Wed, 21 Feb 2024 23:42:24 -0500 Subject: [PATCH] Fix issue with missing Cargo.lock in Dockerfile causing build failures. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 39f5973..097a0da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ WORKDIR ${APP_HOME} # Create build target cache. RUN USER=root cargo init --bin . -COPY ["Cargo.toml", "Cargo.lock", "./"] +COPY ["Cargo.toml", "./"] RUN cargo build \ && cargo build --tests \ && cargo build --release \