From 662aa5ab69dc98a3b4deb5bde4da2dd2df9bbe0b Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sat, 27 Jul 2019 16:26:36 +0200 Subject: [PATCH] Copy static files in build container --- backend/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index f3802ff..6528846 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -10,6 +10,7 @@ RUN cargo build --release # delete build cache to prevent caching issues later on RUN rm -r ./target/x86_64-unknown-linux-musl/release/.fingerprint/gitache-* +COPY ./static ./static COPY ./src ./src # build source code RUN cargo build --release