chore: remove Cargo.lock in Dockerfile (#167)

Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
Gaius 2023-12-26 22:29:27 +08:00 committed by GitHub
parent 615516eedc
commit 830dcebfce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ FROM rust:alpine as builder
RUN apk add --no-cache build-base RUN apk add --no-cache build-base
WORKDIR /app/client WORKDIR /app/client
COPY Cargo.toml Cargo.lock ./ COPY Cargo.toml ./
COPY src/ src/ COPY src/ src/
RUN cargo build --release RUN cargo build --release