-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Add script to generate package diffs between releases - Unify package list names and formats - Replace manual apt-get installation with install script in python-3.6-data-science-cuda-EXASOL-6.2.0 flavor, except for cuda_deps Related to exasol/script-languages-release#233
- Loading branch information
Showing
20 changed files
with
597 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 5 additions & 4 deletions
9
flavors/python-3.6-data-science-EXASOL-6.2.0/flavor_base/flavor_base_deps/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM {{ language_deps }} | ||
|
||
RUN mkdir -p /build_info/packages | ||
COPY flavor_base_deps/packages /build_info/packages/flavor_base_deps | ||
RUN mkdir -p /build_info/packages/flavor_base_deps | ||
|
||
RUN /scripts/install_scripts/install_via_apt.pl --file /build_info/packages/flavor_base_deps/apt_get_packages | ||
COPY flavor_base_deps/packages/apt_get_packages /build_info/packages/flavor_base_deps | ||
RUN /scripts/install_scripts/install_via_apt.pl --file /build_info/packages/flavor_base_deps/apt_get_packages --with-versions --allow-no-version | ||
|
||
RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_base_deps/pip3_packages --python-binary python3 | ||
COPY flavor_base_deps/packages/python3_pip_packages /build_info/packages/flavor_base_deps | ||
RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_base_deps/python3_pip_packages --python-binary python3 --with-versions --allow-no-version |
19 changes: 0 additions & 19 deletions
19
.../python-3.6-data-science-EXASOL-6.2.0/flavor_base/flavor_base_deps/packages/pip3_packages
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
...-3.6-data-science-EXASOL-6.2.0/flavor_base/flavor_base_deps/packages/python3_pip_packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
pyexasol| | ||
keras|2.3.1 | ||
tensorflow|1.13.1 | ||
tensorflow-hub|0.4.0 | ||
kmodes| | ||
seaborn| | ||
matplotlib| | ||
imbalanced-learn| | ||
lifelines| | ||
nltk| | ||
gensim| | ||
lxml| | ||
ujson| | ||
numpy| | ||
scipy|1.2.1 # due to https://github.com/CamDavidsonPilon/lifelines/issues/725 | ||
scikit-learn| | ||
pycurl| | ||
statsmodels| | ||
PyYAML| |
8 changes: 4 additions & 4 deletions
8
flavors/python-3.6-data-science-EXASOL-6.2.0/flavor_base/language_deps/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 5 additions & 10 deletions
15
flavors/python-3.6-data-science-cuda-EXASOL-6.2.0/flavor_base/flavor_base_deps/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
FROM {{ language_deps }} | ||
|
||
RUN mkdir -p /build_info/packages | ||
COPY flavor_base_deps/packages /build_info/packages/flavor_base_deps | ||
RUN mkdir -p /build_info/packages/flavor_base_deps | ||
|
||
RUN apt-get -y update && \ | ||
apt-get -y install $(cat /build_info/packages/flavor_base_deps/apt_get_packages) && \ | ||
locale-gen en_US.UTF-8 && \ | ||
update-locale LC_ALL=en_US.UTF-8 && \ | ||
apt-get -y clean && \ | ||
apt-get -y autoremove && \ | ||
ldconfig | ||
COPY flavor_base_deps/packages/apt_get_packages /build_info/packages/flavor_base_deps | ||
RUN /scripts/install_scripts/install_via_apt.pl --file /build_info/packages/flavor_base_deps/apt_get_packages --with-versions --allow-no-version | ||
|
||
RUN /scripts/install_scripts/install_packages_batch.sh "PYTHON3-PIP" "pip install --ignore-installed <<list>>" "'<<package>>'" " " /build_info/packages/flavor_base_deps/pip3_packages | ||
COPY flavor_base_deps/packages/python3_pip_packages /build_info/packages/flavor_base_deps | ||
RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_base_deps/python3_pip_packages --python-binary python3 --with-versions --allow-no-version |
19 changes: 0 additions & 19 deletions
19
...on-3.6-data-science-cuda-EXASOL-6.2.0/flavor_base/flavor_base_deps/packages/pip3_packages
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
...data-science-cuda-EXASOL-6.2.0/flavor_base/flavor_base_deps/packages/python3_pip_packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
pyexasol | ||
keras|2.3.1 | ||
tensorflow-gpu|1.13.1 # due to the dependency of tensorflow's pip package to the fixed CUDA Driver Version 410.104 | ||
tensorflow-hub|0.4.0 | ||
kmodes | ||
seaborn | ||
matplotlib | ||
imbalanced-learn | ||
lifelines | ||
nltk | ||
gensim | ||
lxml | ||
ujson | ||
numpy | ||
scipy|1.2.1 # due to https://github.com/CamDavidsonPilon/lifelines/issues/725 | ||
scikit-learn | ||
pycurl | ||
statsmodels | ||
PyYAML |
20 changes: 4 additions & 16 deletions
20
flavors/python-3.6-data-science-cuda-EXASOL-6.2.0/flavor_base/language_deps/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.