From abaee033da9dbad86822487a477bf3110d73942d Mon Sep 17 00:00:00 2001 From: Artem Chernyshev Date: Thu, 31 Oct 2024 16:16:34 +0300 Subject: [PATCH] fix: make web UI show favicon Fixes: https://github.com/siderolabs/omni/issues/714 Signed-off-by: Artem Chernyshev --- .dockerignore | 3 ++- Dockerfile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 5083a460..4e09770e 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-09-07T21:30:27Z by kres 8be5fa7. +# Generated on 2024-10-31T13:15:39Z by kres 6d3cad4-dirty. * !frontend/src @@ -15,6 +15,7 @@ !frontend/*.js !frontend/*.ts !frontend/*.html +!frontend/*.ico !frontend/eslint.config.js !internal/frontend/frontend.go !client/go.mod diff --git a/Dockerfile b/Dockerfile index e99670a0..f4a8130c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -91,6 +91,7 @@ COPY frontend/bunfig.toml ./ COPY frontend/*.html ./ COPY frontend/*.ts ./ COPY frontend/*.js ./ +COPY frontend/*.ico ./ COPY ./frontend/src ./src COPY ./frontend/test ./test COPY ./frontend/eslint.config.js ./eslint.config.js