docs: add runbook for local development setup and update docker-related configurations

Added a comprehensive runbook detailing the local Docker-based development setup. Updated Dockerfile paths for Nginx and Keycloak to simplify configuration and improve clarity.
This commit is contained in:
2026-01-13 16:30:00 +01:00
parent e5a66726fd
commit 0335de7654
3 changed files with 128 additions and 4 deletions
+2 -2
View File
@@ -96,9 +96,9 @@ RUN apk add --no-cache curl && \
mkdir -p /usr/share/nginx/html/downloads
# Copy Artifacts
COPY config/frontends/web-app/nginx.conf /etc/nginx/nginx.conf
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=builder /app/dist/ /usr/share/nginx/html/
COPY config/frontends/web-app/downloads/ /usr/share/nginx/html/downloads/
COPY downloads/ /usr/share/nginx/html/downloads/
# Permissions
RUN chown -R nginx:nginx /usr/share/nginx/html && \