diff --git a/Dockerfile b/Dockerfile index f1803a7..5cebc20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ FROM alpine:3.22 RUN apk add --no-cache ca-certificates RUN mkdir /web COPY --from=builder /bin/vcc /bin/vcc -COPY ./web /web +COPY ./web /bin/web # Default listens on :8090 – siehe main.go EXPOSE 8080 diff --git a/main.go b/main.go index f617a1f..feba73f 100644 --- a/main.go +++ b/main.go @@ -413,7 +413,7 @@ func makeID() string { // ---- Router ---- -//go:embed \/web/** +//go:embed web/** var embedded embed.FS func (s *Server) routes() http.Handler {