From eb5773c4bfcbee003d10bac2b450d35e378cb622 Mon Sep 17 00:00:00 2001 From: Jay Faulkner Date: Thu, 23 Jan 2014 09:40:36 -0800 Subject: [PATCH] fix(Dockerfile): Use CMD instead of Entrypoint - This allows the container to be started with a shell rather than only with the agent, which is helpful for troubleshooting --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7db0d1af9..c7181317a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ RUN pip install -r /tmp/teeth-agent/requirements.txt # This will succeed because all the dependencies (including pesky teeth_rest) were installed previously RUN pip install /tmp/teeth-agent -ENTRYPOINT [ "/usr/local/bin/teeth-standby-agent" ] +CMD [ "/usr/local/bin/teeth-standby-agent" ]