1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-22 05:09:09 +02:00
dockerfiles/httpbin/Dockerfile

13 lines
191 B
Docker
Raw Normal View History

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