Erweiterungen
This commit is contained in:
@@ -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"]
|
||||
|
||||
2
pom.xml
2
pom.xml
@@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>de.assecutor.votianlt</groupId>
|
||||
<artifactId>votianlt</artifactId>
|
||||
<version>0.9.2</version>
|
||||
<version>0.9.4</version>
|
||||
|
||||
<packaging>jar</packaging>
|
||||
|
||||
|
||||
Binary file not shown.
@@ -520,6 +520,7 @@ public class AddJobView extends Main {
|
||||
H3 pickupApptTitle = new H3("Termin (Abholung)");
|
||||
pickupApptTitle.getStyle().set("margin", "0");
|
||||
pickupTime = new TimePicker("Uhrzeit");
|
||||
pickupTime.setLocale(java.util.Locale.GERMANY);
|
||||
HorizontalLayout pickupApptRow = new HorizontalLayout(pickupDate, pickupTime);
|
||||
pickupApptRow.setWidthFull();
|
||||
pickupApptRow.setSpacing(true);
|
||||
@@ -531,6 +532,7 @@ public class AddJobView extends Main {
|
||||
H3 deliveryApptTitle = new H3("Termin (Lieferung)");
|
||||
deliveryApptTitle.getStyle().set("margin", "0");
|
||||
deliveryTime = new TimePicker("Uhrzeit");
|
||||
deliveryTime.setLocale(java.util.Locale.GERMANY);
|
||||
HorizontalLayout deliveryApptRow = new HorizontalLayout(deliveryDate, deliveryTime);
|
||||
deliveryApptRow.setWidthFull();
|
||||
deliveryApptRow.setSpacing(true);
|
||||
|
||||
Reference in New Issue
Block a user