1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/httpbin/Dockerfile

14 lines
272 B
Docker
Raw Normal View History

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