From d893aaba186c55265692c3c79708480f859082eb Mon Sep 17 00:00:00 2001 From: jake Date: Sun, 9 Nov 2025 14:35:45 -0500 Subject: [PATCH] removing from bin, not a command --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index efdbb33..e5de798 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM golang:alpine3.22 AS builder COPY . . RUN go mod download && \ - go build -o parser main.go + go build -o ./parser main.go FROM golang:alpine3.22 -COPY --from=builder parser /bin/parser -ENTRYPOINT [ "/bin/parser" ] \ No newline at end of file +COPY --from=builder ./parser /run/parser +ENTRYPOINT [ "./run/parser" ] \ No newline at end of file