From 299cadb27853fce4ef3e4e9b49cbd587f7816aad Mon Sep 17 00:00:00 2001 From: RochoElLocho Date: Sun, 12 Jan 2025 12:47:29 +0100 Subject: [PATCH] Dockerfile aktualisiert main.go funktion entfernt --- Dockerfile | 2 ++ main.go | 10 ++-------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index a69c489..52966ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,8 @@ COPY --from=builder /app/ek-suche /app/ek-suche # Kopiere die index.html und den public-Ordner vom Builder COPY --from=builder /app/index.html /app/index.html +COPY --from=builder /app/popup.html /app/popup.html +COPY --from=builder /app/public/ /app/public/ # Stelle sicher, dass die Anwendung ausführbar ist diff --git a/main.go b/main.go index 9f890c2..f234c5c 100644 --- a/main.go +++ b/main.go @@ -76,15 +76,9 @@ func handleFavicon(w http.ResponseWriter, r *http.Request) { } func handlePopupInstructions(w http.ResponseWriter, r *http.Request) { - tmpl, err := template.ParseFiles("popup.html") - if err != nil { - log.Printf("Fehler beim Parsen des Templates: %v", err) - http.Error(w, "Interner Serverfehler", http.StatusInternalServerError) - return - } + tmpl := template.Must(template.ParseFiles("popup.html")) if err := tmpl.Execute(w, nil); err != nil { - log.Printf("Fehler beim Ausführen des Templates: %v", err) - http.Error(w, "Interner Serverfehler", http.StatusInternalServerError) + http.Error(w, err.Error(), http.StatusInternalServerError) } }