Files
httpbin/Dockerfile
T
Steffen Schröder 4c267df3d9 Bump version to 0.9.2
2018-07-06 21:35:00 +02:00

17 lines
347 B
Docker

FROM ubuntu:18.04
LABEL name="httpbin"
LABEL version="0.9.2"
LABEL description="A simple HTTP service."
LABEL org.kennethreitz.vendor="Kenneth Reitz"
RUN apt update -y && apt install python3-pip -y
EXPOSE 80
ADD . /httpbin
RUN pip3 install --no-cache-dir gunicorn /httpbin
CMD ["gunicorn", "-b", "0.0.0.0:80", "httpbin:app", "-k", "gevent"]