From 5b0d0e133dd8c7f978ba6c531cf33c587ec36df4 Mon Sep 17 00:00:00 2001 From: Vann-Dev Date: Sat, 16 Dec 2023 09:47:10 +0700 Subject: [PATCH] fix: dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a725300..37ba743 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,7 @@ FROM rust:1.74.1-slim-bookworm as build WORKDIR /tmp/build -COPY ./Cargo.lock ./Cargo.lock -COPY ./Cargo.toml ./Cargo.toml +COPY . . RUN cargo build --release