mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:50 +02:00
14 lines
272 B
Docker
14 lines
272 B
Docker
#
|
|
# Dockerfile for httpbin
|
|
#
|
|
|
|
FROM alpine:3
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache py3-brotlipy py3-cffi py3-pip \
|
|
&& pip3 install --no-cache-dir gunicorn httpbin
|
|
|
|
EXPOSE 8000
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "httpbin:app"]
|