updated dockerfile

This commit is contained in:
2017-03-17 12:55:46 -04:00
parent 2fc2a3f47a
commit fb668b582d
+4 -2
View File
@@ -1,10 +1,12 @@
FROM ubuntu:trusty
FROM alpine:3.5
ENV WEB_CONCURRENCY=4
ADD . /httpbin
RUN apt-get update -y && apt-get -y install python-pip && pip install gunicorn && pip install /httpbin
RUN apk add --update python python-dev py-pip build-base ca-certificates libffi-dev
RUN pip install --upgrade pip
RUN pip install gunicorn && pip install /httpbin
EXPOSE 8080