diff --git a/Dockerfile b/Dockerfile index 88e41a5..d7263d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ FROM ubuntu:18.04 -ADD . /httpbin - RUN apt update -y RUN apt install python3-pip -y + +ADD . /httpbin + RUN pip3 install --no-cache-dir gunicorn /httpbin EXPOSE 80