2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-24 06:28:23 +01:00
Files
dockerfiles_vimagick/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"]