From ac5f224c2d85606ec9edc1ddd277c42016cef2b4 Mon Sep 17 00:00:00 2001 From: DanielMowitz Date: Thu, 24 Aug 2023 18:04:55 +0200 Subject: [PATCH] Don't copy Cargo.lock --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8ec9ffb..2414a8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,6 @@ FROM rust:1.69-alpine RUN mkdir webmention-filer COPY src webmention-filer/src COPY Cargo.toml webmention-filer/Cargo.toml -COPY Cargo.lock webmention-filer/Cargo.lock WORKDIR webmention-filer RUN cargo build --release