Refactor web assets structure; migrate HTML, CSS, and JS to new directory and update Dockerfile for new paths

This commit is contained in:
2025-06-15 01:07:02 +02:00
parent 12a313eea4
commit 373eb6d324
5 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ FROM alpine:3
RUN apk add --no-cache ca-certificates
WORKDIR /app
COPY --from=builder /out/ncore-stats .
COPY index.html style.css script.js ./
COPY web ./web
EXPOSE 3000
CMD ["./ncore-stats"]