dockerfile updates

- it is closer to a standard flow than anticipated
This commit is contained in:
2025-11-09 14:28:50 -05:00
parent 7c484fb407
commit 6031547823

View File

@@ -6,5 +6,5 @@ RUN go mod download && \
go build -o /build/parser main.go
FROM golang:alpine3.22
COPY --from=builder /build/parser /
ENTRYPOINT [ "parser" ]
COPY --from=builder /build/parser /parser
ENTRYPOINT [ "/parser" ]