mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
13 lines
192 B
Docker
13 lines
192 B
Docker
#
|
|
# Dockerfile for httpbin
|
|
#
|
|
|
|
FROM vimagick/python:3
|
|
MAINTAINER kev <noreply@easypi.info>
|
|
|
|
RUN pip install gunicorn httpbin
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:80", "httpbin:app"]
|