dockerfile: use exec form for entrypoint script

Using the exec form will allow us to pass arguments to the
container/entrypoint in the future.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2019-11-07 14:09:52 -05:00 committed by John Mulligan
parent 1bc4d888b8
commit ac1d6a6554
1 changed files with 1 additions and 1 deletions

View File

@ -30,4 +30,4 @@ VOLUME /go/src/github.com/ceph/go-ceph
COPY micro-osd.sh /
COPY entrypoint.sh /
ENTRYPOINT /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]