mirror of
https://github.com/kennethreitz/httpbin.git
synced 2026-06-05 23:00:18 +00:00
10 lines
218 B
Docker
10 lines
218 B
Docker
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"]
|