Skip to content

Commit

Permalink
fix: path to go-cat in entrypoint use: /bin/go-cat
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed May 22, 2023
1 parent 6bcbcf7 commit af1bed5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ RUN cd cmd/go-cat && go build -o /go-cat


FROM alpine
COPY --from=builder /go-cat /app/go-cat
ENTRYPOINT ["/app/go-cat"]
COPY --from=builder /go-cat /bin/go-cat
ENTRYPOINT ["/bin/go-cat"]

0 comments on commit af1bed5

Please sign in to comment.