From b09d1be7ff0afb8e394bbcf17b6ca9adbc239ffe Mon Sep 17 00:00:00 2001 From: b1ek Date: Sat, 5 Aug 2023 04:01:17 +1000 Subject: [PATCH] fix path --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 75797b3..157a019 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM rust as builder WORKDIR /opt/build +COPY . . RUN cargo install --path . FROM alpine