Fix frontend Docker build to use .env.example instead of .env

This commit is contained in:
Tomas Dvorak
2026-02-27 18:17:19 +01:00
parent 9769225416
commit 46845b8341
+1 -1
View File
@@ -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