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
This commit is contained in:
Jay Faulkner
2014-01-23 09:40:36 -08:00
parent c3f1130e38
commit eb5773c4bf

View File

@@ -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" ]