From 2bbf825cf7d7ab0f9c0d61e53301b0feae0e118c Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Mon, 1 Dec 2025 14:02:37 +0100 Subject: [PATCH] separation of ui and static 2 --- apps/static/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/static/Dockerfile b/apps/static/Dockerfile index bf63572..a5652c5 100644 --- a/apps/static/Dockerfile +++ b/apps/static/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /usr/share/nginx/html RUN rm -rf ./* # Copy only static assets from the UI project -COPY apps/ui/static/ ./ +COPY apps/static/static/ ./ EXPOSE 80