added templates, more solid DarkMode
All checks were successful
/ push_to_registry (push) Successful in 1m13s

This commit is contained in:
Florian Walther
2026-02-06 12:34:10 +01:00
parent 623cfd3a50
commit 3ab261d777
6 changed files with 342 additions and 546 deletions

View File

@@ -16,9 +16,14 @@ FROM scratch
# Kopiere die gebaute Binärdatei
COPY --from=builder /app/password-generator /password-generator
# Kopiere die templates
COPY templates/ /templates/
# Kopiere die static files
COPY static/ /static/
# Setze die Umgebungsvariable für die Ports
ENV PORT=8080
# Starte die Anwendung
CMD ["/password-generator"]