2020-09-20 12:35:08 +00:00
|
|
|
FROM freqtradeorg/freqtrade:develop
|
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
COPY requirements-dev.txt /freqtrade/
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get -y install git sudo vim \
|
|
|
|
&& apt-get clean \
|
2020-09-20 12:41:17 +00:00
|
|
|
&& pip install autopep8--no-cache-dir \
|
2020-09-20 12:35:08 +00:00
|
|
|
# Install ALL dependencies
|
|
|
|
&& pip install -r requirements-dev.txt --no-cache-dir \
|
|
|
|
# Install documentation dependencies (to enable mkdocs)
|
|
|
|
&& pip install -r docs/requirements-docs.txt --no-cache-dir \
|
|
|
|
&& useradd -m ftuser \
|
|
|
|
&& mkdir -p /home/ftuser/.vscode-server /home/ftuser/.vscode-server-insiders /home/ftuser/commandhistory \
|
|
|
|
&& echo "export PROMPT_COMMAND='history -a'" >> /home/ftuser/.bashrc \
|
|
|
|
&& echo "export HISTFILE=~/commandhistory/.bash_history" >> /home/ftuser/.bashrc \
|
|
|
|
&& chown ftuser: -R /home/ftuser/
|
|
|
|
|
|
|
|
USER ftuser
|
|
|
|
|
|
|
|
# Empty the ENTRYPOINT to allow all commands
|
|
|
|
ENTRYPOINT []
|