From 17b817bacc79f3ddf31abb89ea06b37bbc0b2ae0 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Tue, 16 Apr 2019 20:56:24 +0200 Subject: [PATCH] Copy static resources in docker container --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b833397..30648e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ RUN cargo build --release RUN rm -r ./target/x86_64-unknown-linux-musl/release/.fingerprint/hoc-* # copy source code +COPY ./static ./static COPY ./src ./src # build source code RUN cargo build --release