diff --git a/httpbin/Dockerfile b/httpbin/Dockerfile new file mode 100644 index 0000000..09e8cfc --- /dev/null +++ b/httpbin/Dockerfile @@ -0,0 +1,12 @@ +FROM python:3-alpine + +RUN apk add --no-cache --virtual .build-deps \ + build-base \ + libffi-dev \ + && pip3 install --no-cache-dir \ + gevent \ + gunicorn \ + httpbin \ + && apk del .build-deps + +CMD ["gunicorn", "-b", "0.0.0.0:80", "httpbin:app", "-k", "gevent"]