2018-08-14 07:44:21 +00:00
|
|
|
FROM freqtradeorg/freqtrade:develop
|
|
|
|
|
2021-04-08 18:36:10 +00:00
|
|
|
# Switch user to root if you must install something from apt
|
|
|
|
# Don't forget to switch the user back below!
|
|
|
|
# USER root
|
|
|
|
|
|
|
|
# The below dependency - pyti - serves as an example. Please use whatever you need!
|
|
|
|
RUN pip install --user pyti
|
|
|
|
|
2022-06-23 05:17:24 +00:00
|
|
|
# Switch back to user (only if you required root above)
|
2021-04-08 18:36:10 +00:00
|
|
|
# USER ftuser
|