diff --git a/Dockerfile b/Dockerfile index 1c09081..0bec808 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM rust as builder COPY . /app +WORKDIR /app + RUN cargo build --release FROM archlinux