1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-06 03:54:48 +02:00
dockerfiles/httpbin/Dockerfile
2016-01-14 17:20:38 +08:00

13 lines
194 B
Docker

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