From 9a65d7c43f15a8861a565ed017effbd99909715c Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sat, 27 Mar 2021 18:07:23 -0700 Subject: [PATCH] Copy logo.svg into the docker image on build. Closes #859 --- build/release/Dockerfile-build | 1 + 1 file changed, 1 insertion(+) diff --git a/build/release/Dockerfile-build b/build/release/Dockerfile-build index 4ad4cd228..e14edaba9 100644 --- a/build/release/Dockerfile-build +++ b/build/release/Dockerfile-build @@ -25,4 +25,5 @@ COPY --from=build /build/owncast /app/owncast COPY --from=build /build/webroot /app/webroot COPY --from=build /build/static /app/static COPY --from=build /build/data /app/data +COPY --from=build /build/webroot/img/logo.svg app/data/logo.svg CMD ["/app/owncast"]