chore: Version 0.9.12 - Dockerfile, Styles und Dokumentation aktualisiert

This commit is contained in:
2026-03-24 10:55:34 +01:00
parent e949d0c46a
commit d688bd8ce6
6 changed files with 175 additions and 9 deletions

View File

@@ -1,10 +1,12 @@
FROM eclipse-temurin:21-jre
ARG JAR_FILE=target/*.jar
# Zeitzone auf Berlin setzen und 24h-Format konfigurieren
ENV TZ=Europe/Berlin
ENV LC_TIME=de_DE.UTF-8
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
COPY target/*.jar app.jar
COPY ${JAR_FILE} app.jar
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "/app.jar", "--spring.profiles.active=production"]