include Cargo.lock
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-06-05 20:31:07 +02:00
parent 79fc59c2a1
commit 046683cd98

View File

@@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \
WORKDIR "/app"
# Cache dependencies
COPY Cargo.toml .
COPY Cargo.toml Cargo.lock .
RUN mkdir src && echo "fn main() {}" > src/main.rs
RUN cargo build --release --locked