Files
httpbin/Dockerfile
T
2017-03-17 12:46:40 -04:00

12 lines
217 B
Docker

FROM ubuntu:trusty
ENV WEB_CONCURRENCY=4
ADD . /httpbin
RUN apt-get update -y && apt-get -y install python-pip && pip install gunicorn && pip install /httpbin
EXPOSE 8080
CMD gunicorn -b 0.0.0.0:8080 httpbin:app