Merge pull request #1218 from jin10086/develop
use --no-cache-dir for docker build
This commit is contained in:
commit
52b75c5997
@ -16,10 +16,10 @@ WORKDIR /freqtrade
|
|||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
COPY requirements.txt /freqtrade/
|
COPY requirements.txt /freqtrade/
|
||||||
RUN pip install numpy \
|
RUN pip install numpy --no-cache-dir \
|
||||||
&& pip install -r requirements.txt
|
&& pip install -r requirements.txt --no-cache-dir
|
||||||
|
|
||||||
# Install and execute
|
# Install and execute
|
||||||
COPY . /freqtrade/
|
COPY . /freqtrade/
|
||||||
RUN pip install -e .
|
RUN pip install -e . --no-cache-dir
|
||||||
ENTRYPOINT ["freqtrade"]
|
ENTRYPOINT ["freqtrade"]
|
||||||
|
Loading…
Reference in New Issue
Block a user