2016-01-14 11:20:38 +02:00
|
|
|
#
|
|
|
|
# Dockerfile for httpbin
|
|
|
|
#
|
|
|
|
|
|
|
|
FROM vimagick/python:3
|
2017-05-08 01:05:07 +02:00
|
|
|
MAINTAINER kev <noreply@easypi.pro>
|
2016-01-14 11:20:38 +02:00
|
|
|
|
|
|
|
RUN pip install gunicorn httpbin
|
|
|
|
|
|
|
|
EXPOSE 80
|
|
|
|
|
|
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:80", "httpbin:app"]
|