From 41b0483b10a7750171b50df338ece6d846a97439 Mon Sep 17 00:00:00 2001 From: Katalina Okano Date: Sun, 27 Nov 2022 14:56:49 -0500 Subject: [PATCH] add hack to dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 3ebba77..4710ed4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ ARG SERVICE WORKDIR /app COPY Cargo.toml Cargo.lock ./ COPY services ./services +COPY hack ./hack RUN cargo build --bin ${SERVICE} --release