Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
andriyvasylyna committed Dec 19, 2023
1 parent 21fa8ce commit b1564e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /sources/cmd
RUN go build -ldflags "-s" -o run

FROM golang:1.19.5-alpine3.17
COPY --from=0 /sources/run /app/run
COPY --from=0 /sources/cmd/run /app/run
WORKDIR /app
ENTRYPOINT ["/app/run"]
CMD ["--port", "9000", "--refresh-interval", "60", "--plain-logs", "false"]

0 comments on commit b1564e0

Please sign in to comment.