This docker image will configure ssh and supervisord to run in a docker container. This image is intended to provide a foundation for other docker images which follow this pattern.
docker build -t "stackinabox/supervisord" .
FROM stackinabox/supervisord
...
CMD ["/bin/bash"]
See Best practices for writing Dockerfiles for tips on creating easy to read and consume Dockerfiles.