fixing Web-App Dockerfile

This commit is contained in:
2025-09-27 22:23:54 +02:00
parent 80eca624a4
commit c787994bc0
10 changed files with 820 additions and 16 deletions
+8 -1
View File
@@ -5,7 +5,13 @@
# ===================================================================
# Stage 1: Build Stage - Kotlin/JS kompilieren
# ===================================================================
FROM gradle:8-jdk21-alpine AS builder
FROM gradle:8-jdk21 AS builder
# Install Node.js and npm for Kotlin/JS builds (Ubuntu-based image has better Node.js compatibility)
RUN apt-get update && apt-get install -y curl && \
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
@@ -20,6 +26,7 @@ COPY core ./core
COPY platform ./platform
COPY infrastructure ./infrastructure
COPY services ./services
COPY docs ./docs
# Setze Gradle-Wrapper Berechtigung
RUN chmod +x ./gradlew
+7 -5
View File
@@ -16,11 +16,6 @@ http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# WASM MIME-Type für zukünftige Builds
location ~ \.wasm$ {
add_header Content-Type application/wasm;
}
# Logging
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
@@ -68,6 +63,13 @@ http {
expires 1y;
add_header Cache-Control "public, immutable";
}
# WASM Files mit korrektem MIME-Type
location ~* \.wasm$ {
add_header Content-Type application/wasm;
expires 1y;
add_header Cache-Control "public, immutable";
}
}
# Proxy API calls zu Gateway