1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/httpbin/Dockerfile

14 lines
272 B
Docker
Raw Normal View History

2016-01-14 09:20:38 +00:00
#
# Dockerfile for httpbin
#
2022-02-14 10:23:42 +00:00
FROM alpine:3
MAINTAINER EasyPi Software Foundation
2016-01-14 09:20:38 +00:00
2022-02-14 10:23:42 +00:00
RUN set -xe \
2022-02-14 10:31:03 +00:00
&& apk add --no-cache py3-brotlipy py3-cffi py3-pip \
&& pip3 install --no-cache-dir gunicorn httpbin
2016-01-14 09:20:38 +00:00
2022-02-14 10:23:42 +00:00
EXPOSE 8000
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "httpbin:app"]