diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..03010da --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:trusty + +ADD . /httpbin + +RUN apt-get update -y && apt-get -y install python-pip && pip install gunicorn && pip install /httpbin + +EXPOSE 8080 + +CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:8080", "httpbin:app"]