fix dockerfile copy path (#251)

This commit is contained in:
Rong Ou 2020-05-11 11:51:55 -07:00 committed by GitHub
parent 606679ade6
commit 915f22f08f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ WORKDIR /go/src/github.com/kubeflow/mpi-operator
RUN make
FROM gcr.io/distroless/base-debian10:latest
COPY --from=build /go/src/github.com/kubeflow/mpi-operator/cmd/mpi-operator.* /opt/
COPY --from=build /go/src/github.com/kubeflow/mpi-operator/_output/cmd/bin/mpi-operator.* /opt/
COPY third_party/library/license.txt /opt/license.txt
ENTRYPOINT ["/opt/mpi-operator.v1alpha2"]