Skip to content

Instantly share code, notes, and snippets.

@partkyle
Created September 8, 2015 16:54
Show Gist options
  • Save partkyle/0ca2586fb376148edf57 to your computer and use it in GitHub Desktop.
Save partkyle/0ca2586fb376148edf57 to your computer and use it in GitHub Desktop.
Run httpbin in a docker container.
FROM python:2.7
RUN pip install httpbin gunicorn
CMD ["gunicorn", "httpbin:app", "-b", "0.0.0.0:80"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment