diff options
author | Franklin Wei <franklin@rockbox.org> | 2020-06-25 17:42:42 -0400 |
---|---|---|
committer | Franklin Wei <franklin@rockbox.org> | 2020-06-25 17:42:42 -0400 |
commit | 4d52a42e079087f211ba0ff22b749b6b07f17459 (patch) | |
tree | 5367d4972848d4d5304e8cf697a861252c79c438 | |
parent | e666a7aea8adaade4de9aa504b8fc5da3597ecad (diff) | |
download | rockbox-4d52a42.tar.gz rockbox-4d52a42.zip |
docker-rbclient: use CMD instead of ENTRYPOINT
This makes it easier to override from the command line.
Change-Id: I4bbd2995ed442b119b696da94ce1670304e59933
-rw-r--r-- | tools/docker_rbclient/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docker_rbclient/Dockerfile b/tools/docker_rbclient/Dockerfile index 4c31dedd62..ede5455db8 100644 --- a/tools/docker_rbclient/Dockerfile +++ b/tools/docker_rbclient/Dockerfile @@ -63,4 +63,4 @@ COPY runclient_modified.sh /home/rb/rockbox/runclient.sh RUN cd /home/rb/rockbox && chmod +x runclient.sh -ENTRYPOINT cd /home/rb/rockbox && ./runclient.sh $USER $PASS $NAME +CMD cd /home/rb/rockbox && ./runclient.sh $USER $PASS $NAME |