Files
httpbin/Dockerfile
T
kennethreitz 7459424bfb docker compose
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2018-05-17 18:30:38 -04:00

12 lines
214 B
Docker

FROM ubuntu:18.04
ADD . /httpbin
RUN apt update -y
RUN apt install python3-pip -y
RUN pip3 install --no-cache-dir gunicorn /httpbin
EXPOSE 80
CMD ["gunicorn", "-b", "0.0.0.0:80", "httpbin:app", "-k", "gevent"]