| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
If you are reading this README on DockerHub, then the links to files in the GitHub repository will be broken. Please read this documentation from GitHub instead.
This repository defines the "civisanalytics/datascience-python" Docker image. This Docker image provides an environment with data science tools from the Python ecosystem. This image is the execution environment for Python jobs in the Civis data science platform, and it includes the Civis Python API client.
Either build the Docker image locally
docker build -t datascience-python .or download the image from DockerHub
docker pull civisanalytics/datascience-python:latestThe latest tag (Docker's default if you don't specify a tag) will give you the most recently-built version of the datascience-python image. You can replace the tag latest with a version number such as 1.0 to retrieve a reproducible environment.
Inside the datascience-python Docker image, Python packages are installed in the root environment. For a full list of included Python libraries, see the requirements-core.txt file.
To start a Docker container from the datascience-python image and interact with it from a bash prompt, use
docker run -i -t civisanalytics/datascience-python:latest /bin/bashYou can run a Python command with
docker run civisanalytics/datascience-python:latest python -c "import pandas; print(pandas.__version__)"The image contains environment variables which allow you to find the current version. There are four environment variables defined:
VERSION VERSION_MAJOR VERSION_MINOR VERSION_MICRO
VERSION contains the full version string, e.g., "1.0.3". VERSION_MAJOR, VERSION_MINOR, and VERSION_MICRO each contain a single integer.
The joblib library enhances multiprocessing capabilities for scientific Python computing. In particular, the scikit-learn library uses joblib for parallelization. This Docker image sets joblib's default location for staging temporary files to the /tmp directory. The normal default is /shm. /shm is a RAM disk which defaults to a 64 MB size in Docker containers, too small for typical scientific computing.
Note
The choice of packages pre-installed in this Docker image is intentionally limited to a very small number of them. Historically, adding more packages had led to thorny incompatibility issues among new and existing packages, as well as their transtive dependencies. For this reason, requests for adding new package are generally not entertained.
See CONTRIBUTING for information about contributing to this project.
If you make any changes, be sure to build a container to verify that it successfully completes:
docker build -t datascience-python:test .and describe any changes in the change log.
Publishing to DockerHub is handled by GitHub Actions (see .github/workflows). Both publishing workflows build the image and run the test suite before they push anything.
There is no stored DockerHub password or access token. The workflows authenticate over OIDC: each run exchanges a GitHub identity token for a DockerHub token that expires within minutes. This requires two things a repository admin must set up once -- an OIDC connection on the civisanalytics DockerHub organization, and a DOCKERHUB_OIDC_CONNECTIONID repository variable holding that connection's ID (it is an identifier, not a secret). The publishing jobs also run in a dockerhub-publish environment restricted to master and v*.*.*.
Any PR merged to master is published as the latest tag on DockerHub.
To cut a new version:
BSD-3
See LICENSE.md for details.
| Back | FazBrowse Home | New Git URL |