refactors project structure

This commit is contained in:
Sergi Delgado Segura
2019-08-09 19:42:42 +01:00
parent 1019b207ff
commit 1cde4a2a11
31 changed files with 31 additions and 29 deletions

View File

@@ -10,11 +10,11 @@ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
RUN python3 get-pip.py
# Add pisa files
ADD pisa-btc /root/pisa-btc
WORKDIR /root/pisa-btc
ADD pisa /root/pisa_btc
WORKDIR /root/pisa_btc
# Export pythonpath
RUN echo export PYTHONPATH="$PYTHONPATH:/root/pisa-btc/" >> /root/.bashrc
RUN echo export PYTHONPATH="$PYTHONPATH:/root/pisa_btc/" >> /root/.bashrc
# Install dependencies
RUN pip3 install -r requirements.txt