File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1414
1515* update ``` generate-circleci-config.py ``` to eliminate the need for requirements.txt
1616 in spider repos
17+ * runtime docker images no longer samples __ init__ .py as executable
1718
1819### Removed
1920
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ RUN /tmp/install-chromedriver.sh
1616COPY cloudfeaster.tar.gz /tmp/cloudfeaster.tar.gz
1717RUN pip install /tmp/cloudfeaster.tar.gz
1818RUN chmod a+x "$(python -c 'import cloudfeaster.samples, os; print(os.path.dirname(cloudfeaster.samples.__file__))')/" *.py
19+ RUN chmod a-x "$(python -c 'import cloudfeaster.samples, os; print(os.path.dirname(cloudfeaster.samples.__file__))')/" __init__.py
1920RUN rm -rf /tmp/cloudfeaster.tar.gz
2021
2122RUN adduser headless --system
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ RUN /tmp/install-chromedriver.sh
3232COPY cloudfeaster.tar.gz /tmp/cloudfeaster.tar.gz
3333RUN pip install /tmp/cloudfeaster.tar.gz
3434RUN chmod a+x "$(python -c 'import cloudfeaster.samples, os; print(os.path.dirname(cloudfeaster.samples.__file__))')/" *.py
35+ RUN chmod a-x "$(python -c 'import cloudfeaster.samples, os; print(os.path.dirname(cloudfeaster.samples.__file__))')/" __init__.py
3536RUN rm -rf /tmp/cloudfeaster.tar.gz
3637
3738RUN adduser headless --system
You can’t perform that action at this time.
0 commit comments