From a001334c9bd6399bbb3e42a49d59ee6942310d68 Mon Sep 17 00:00:00 2001 From: skidoodle Date: Sat, 14 Jun 2025 05:21:30 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e731bf..5cd67c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN go mod download COPY . . ENV CGO_ENABLED=1 -RUN go build -o trackncore . +RUN go build -o ncore-stats . FROM alpine:latest RUN apk --no-cache add ca-certificates @@ -16,5 +16,7 @@ WORKDIR /app/ COPY --from=builder /build/trackncore . COPY --from=builder /build/data . COPY --from=builder /build/index.html . +COPY --from=builder /build/script.js . +COPY --from=builder /build/style.css . EXPOSE 3000 -CMD ["./trackncore"] +CMD ["./ncore-stats"]