2016-01-14 11:20:38 +02:00
|
|
|
#
|
|
|
|
# Dockerfile for httpbin
|
|
|
|
#
|
|
|
|
|
|
|
|
FROM vimagick/python:3
|
2016-05-01 03:06:20 +02:00
|
|
|
MAINTAINER kev <noreply@easypi.info>
|
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"]
|