From 7c44053eaefa303d4ca11dce31fadf08fee7fe1d Mon Sep 17 00:00:00 2001 From: Raine Date: Mon, 16 Oct 2023 01:36:02 +0200 Subject: [PATCH] fix: dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 17eec55..ac77ad5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM rust WORKDIR /usr/src/app # first cargo files to cache dependencies -COPY Cargo.toml Cargo.lock ./ +COPY Cargo.toml ./ RUN mkdir src && \ echo "fn main() {println!(\"if you see this, the build broke\")}" > src/main.rs && \ cargo build --release