From 830dcebfce5169567e91d1dcadc57e7a8f4a0d75 Mon Sep 17 00:00:00 2001 From: Gaius Date: Tue, 26 Dec 2023 22:29:27 +0800 Subject: [PATCH] chore: remove Cargo.lock in Dockerfile (#167) Signed-off-by: Gaius --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 95ba026d..08192fa5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM rust:alpine as builder RUN apk add --no-cache build-base WORKDIR /app/client -COPY Cargo.toml Cargo.lock ./ +COPY Cargo.toml ./ COPY src/ src/ RUN cargo build --release