Skip to content

Commit

Permalink
Fix Dockerfile (#84)
Browse files Browse the repository at this point in the history
- Remove use of wildcard/astericks characters when copying go binary from
  the build stage
  • Loading branch information
xyzst authored Dec 21, 2020
1 parent 553c603 commit 9dc7a95
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 @@ -12,6 +12,6 @@ RUN go install ./...

FROM alpine
RUN apk add ca-certificates
COPY --from=build-env /go/bin/* /usr/local/bin/*
COPY --from=build-env /go/bin/ /usr/local/bin/
WORKDIR /workspace
ENTRYPOINT ["/usr/local/bin/graphik"]

0 comments on commit 9dc7a95

Please sign in to comment.