Skip to content

Commit

Permalink
Development (#1)
Browse files Browse the repository at this point in the history
* Changed Dockerfile to avoid creating unnecessary layers for python installation

* Removed github references; Using relative references within the same repo

* fixed issue with template link and bold items in template table

* workers were failing due to missing pip as a dependency. Added pip and flatten the dependencies into a single execution

* Applied same changes to the spotlabworker.sh

* added awscli to dependencies (running into this issue with botocore update aws/aws-cli#3542)

* Adding fix_yahoo_finance to the list of dependencies

* docker image pointing to the fixed repo in dockerhub
  • Loading branch information
ruecarlo authored Feb 1, 2019
1 parent 9257f47 commit 7128fc4
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 496 deletions.
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM python:3.6.3
RUN pip install pandas-datareader
RUN pip install scipy
RUN pip install boto3
RUN pip install --upgrade pandas-datareader scipy boto3 fix_yahoo_finance
COPY /src/queue_processor.py queue_processor.py
COPY /src/worker.py worker.py
CMD ["python", "queue_processor.py"]
Loading

0 comments on commit 7128fc4

Please sign in to comment.