Skip to content

Commit

Permalink
docd: fix binary paths (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathaningram authored Sep 20, 2022
1 parent e0eaf8a commit f7c0a24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.19 AS build

WORKDIR /app
COPY . ./
RUN go build ./docd/...
RUN go build -o /bin/docd ./docd

################################################################################

Expand All @@ -21,6 +21,6 @@ RUN apt-get update \

EXPOSE 8888

COPY --from=build /app/docd /docd
COPY --from=build /bin/docd /docd
ENTRYPOINT ["/docd"]
CMD ["--help"]

0 comments on commit f7c0a24

Please sign in to comment.