Improve usage of docker build cache

This commit is contained in:
Steffen Schröder
2018-05-19 20:51:14 +02:00
parent 2f39ce3314
commit 28247f47e6
+3 -2
View File
@@ -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