Reduce docker image size by removing unnecessary chown

https://github.com/moby/moby/issues/5505
This commit is contained in:
Dale Hui 2018-07-09 14:52:14 -07:00
parent 3872c8f41d
commit 75f0aade0d
1 changed files with 0 additions and 1 deletions

View File

@ -25,7 +25,6 @@ FROM alpine:3.7
RUN apk add --no-cache ca-certificates
COPY --from=downloader /go/src/github.com/golang-migrate/migrate/build/migrate.linux-386 /migrate
RUN chmod u+x /migrate
ENTRYPOINT ["/migrate"]
CMD ["--help"]