diff --git a/Dockerfile b/Dockerfile index 5d1b44f8c..2506665ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,10 +16,10 @@ WORKDIR /freqtrade # Install dependencies COPY requirements.txt /freqtrade/ -RUN pip install numpy \ - && pip install -r requirements.txt +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"] diff --git a/README.md b/README.md index 02b870209..1633bbf13 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ The project is currently setup in two main branches: - `develop` - This branch has often new features, but might also cause breaking changes. - `master` - This branch contains the latest stable release. The bot 'should' be stable on this branch, and is generally well tested. -- `feat/*` - These are feature branches, which are beeing worked on heavily. Please don't use these unless you want to test a specific feature. +- `feat/*` - These are feature branches, which are being worked on heavily. Please don't use these unless you want to test a specific feature. ## A note on Binance diff --git a/requirements.txt b/requirements.txt index 99d0afcdb..478e642c6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -ccxt==1.17.283 -SQLAlchemy==1.2.11 +ccxt==1.17.327 +SQLAlchemy==1.2.12 python-telegram-bot==11.1.0 arrow==0.12.1 cachetools==2.1.0