commit d5b38b014200813fe72649bffe85350cf85fa4c4
parent 579fad38a340410ee3f13feb5a6c46af775c464a
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Sun, 28 Sep 2025 17:20:04 +0200
fix(Dockerfile): fix relative template path
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Dockerfile b/Dockerfile
@@ -10,8 +10,8 @@ RUN make clean && make
FROM docker.io/golang:1.24-alpine
COPY --from=base /app/hivedav /usr/local/bin/hivedav
COPY app.env.example /go/app.env
-COPY templates /go/
-COPY css /go/
+COPY templates /go/templates
+COPY css /go/css
EXPOSE 3737/tcp