From f957088beaa67df6ce26796a03e8a71df67ab6e2 Mon Sep 17 00:00:00 2001 From: skidoodle Date: Fri, 28 Feb 2025 21:17:57 +0000 Subject: [PATCH] part 2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 323a72c..d07bfd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY go.mod go.sum ./ RUN go mod download COPY . . RUN go build -ldflags="-s -w" -o spotify-ws . -RUN go build -ldflags="-s -w" -o healthcheck healthcheck.go +RUN go build -ldflags="-s -w" -o healthcheck ./healthcheck/healthcheck.go FROM gcr.io/distroless/static:nonroot WORKDIR /app