mirror of
https://github.com/kennethreitz/httpbin.git
synced 2026-06-05 23:00:18 +00:00
Update Dockerfile
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
||||
FROM ubuntu:trusty
|
||||
|
||||
ENV GUNICORN_WORKERS=4
|
||||
ENV WEB_CONCURRENCY=4
|
||||
|
||||
ADD . /httpbin
|
||||
|
||||
@@ -8,4 +8,4 @@ RUN apt-get update -y && apt-get -y install python-pip && pip install gunicorn &
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD gunicorn -w "$GUNICORN_WORKERS" -b 0.0.0.0:8080 httpbin:app
|
||||
CMD gunicorn -b 0.0.0.0:8080 httpbin:app
|
||||
|
||||
Reference in New Issue
Block a user