Erweiterungen

This commit is contained in:
2026-02-13 19:52:42 +01:00
parent d5cf0f53ba
commit ec1299d265
4 changed files with 9 additions and 1 deletions

View File

@@ -1,4 +1,10 @@
FROM eclipse-temurin:21-jre
# 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
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "/app.jar", "--spring.profiles.active=production"]