From 46845b8341c85455984b01ba0f2bed9275f99a94 Mon Sep 17 00:00:00 2001 From: Tomas Dvorak Date: Fri, 27 Feb 2026 18:17:19 +0100 Subject: [PATCH] Fix frontend Docker build to use .env.example instead of .env --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 4db14e5..d830b1c 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -8,7 +8,7 @@ COPY frontend/package*.json ./frontend/ RUN cd frontend && npm install --include=dev # Copy environment variables and source code -COPY .env ./frontend/ +COPY .env.example ./frontend/.env COPY frontend/ ./frontend/ # Build the application