1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
dockerfiles/httpbin/Dockerfile
2017-05-08 07:05:07 +08:00

13 lines
191 B
Docker

#
# Dockerfile for httpbin
#
FROM vimagick/python:3
MAINTAINER kev <noreply@easypi.pro>
RUN pip install gunicorn httpbin
EXPOSE 80
CMD ["gunicorn", "--bind", "0.0.0.0:80", "httpbin:app"]