Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.23 KB

README.md

File metadata and controls

35 lines (25 loc) · 1.23 KB

pmdarima docker

CircleCI

The images built here are used for one of two purposes:

  1. As base images for testing and doc generation for the pmdarima project. Note that for this purpose, the only images that should be included are those that help significantly reduce CI/CD build times.

  2. To serve as pre-built base images with the pmdarima package already installed. Images that serve this purpose will be tagged with the version of pmdarima that they have installed.

Pulling images

All images are pushed to the alkalineml prefix. You can pull whatever image you like with docker pull, e.g.:

$ docker pull alkalineml/pmdarima-doc-base:latest
$ docker pull alkalineml/pmdarima:latest

Running the containers will start an ipython session by default:

$ docker run --rm -it alkalineml/pmdarima:latest
Python 3.7.4 (default, Sep 12 2019, 15:40:15)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.8.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: import pmdarima as pm