diff --git a/Dockerfile b/Dockerfile index d5fdb98..59c03f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,5 @@ COPY . . RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o parser main.go FROM golang:alpine3.22 -COPY --from=builder /app/parser /run/parser -ENTRYPOINT [ "/run/parser" ] \ No newline at end of file +COPY --from=builder /app/parser /usr/loca/bin/parser +ENTRYPOINT [ "parser" ] \ No newline at end of file