diff --git a/Dockerfile b/Dockerfile index 5d1b44f8c..aa9071024 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,11 +15,11 @@ RUN mkdir /freqtrade WORKDIR /freqtrade # Install dependencies -COPY requirements.txt /freqtrade/ -RUN pip install numpy \ - && pip install -r requirements.txt +COPY requirements.txt /freqtrade/ +RUN pip install numpy --no-cache-dir \ + && pip install -r requirements.txt --no-cache-dir # Install and execute COPY . /freqtrade/ -RUN pip install -e . +RUN pip install -e . --no-cache-dir ENTRYPOINT ["freqtrade"]