Skip to content

Commit

Permalink
Dockerfile: Replace shell format with exec format
Browse files Browse the repository at this point in the history
Signed-off-by: Ce Gao <gaoce@caicloud.io>
  • Loading branch information
gaocegege committed Apr 9, 2018
1 parent d729f01 commit fa9fde0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion suggestion/grid/Dockerfile
Expand Up @@ -7,4 +7,4 @@ RUN go build -o grid
FROM alpine:3.7
WORKDIR /app
COPY --from=build-env /go/src/github.com/kubeflow/hp-tuning/suggestion/grid /app/
ENTRYPOINT ./grid
ENTRYPOINT ["./grid"]
2 changes: 1 addition & 1 deletion suggestion/hyperband/Dockerfile
Expand Up @@ -7,4 +7,4 @@ RUN go build -o hyperband
FROM alpine:3.7
WORKDIR /app
COPY --from=build-env /go/src/github.com/kubeflow/hp-tuning/suggestion/hyperband /app/
ENTRYPOINT ./hyperband
ENTRYPOINT ["./hyperband"]
2 changes: 1 addition & 1 deletion suggestion/random/Dockerfile
Expand Up @@ -7,4 +7,4 @@ RUN go build -o random
FROM alpine:3.7
WORKDIR /app
COPY --from=build-env /go/src/github.com/kubeflow/hp-tuning/suggestion/random /app/
ENTRYPOINT ./random
ENTRYPOINT ["./random"]

0 comments on commit fa9fde0

Please sign in to comment.