input komma and point by liters and pricePerLiter, IPhone problem

This commit is contained in:
2026-02-18 11:44:04 +01:00
parent 1f7a0098b8
commit 9eb591a32e
6 changed files with 2278 additions and 2269 deletions

View File

@@ -4,11 +4,12 @@ FROM nginx:alpine
# Remove default nginx website
RUN rm -rf /usr/share/nginx/html/*
# Copy the built Flutter web app
COPY ../. /usr/share/nginx/html/
# Copy the built Flutter web app (exclude installDocker folder)
COPY . /usr/share/nginx/html/
RUN rm -rf /usr/share/nginx/html/installDocker
# Copy nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY installDocker/nginx.conf /etc/nginx/conf.d/default.conf
# Expose port 80 (internally, mapped to 8888 externally)
EXPOSE 80