1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:15 +02:00
dockerfiles/httpbin/Dockerfile

13 lines
192 B
Docker
Raw Normal View History

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"]