/docker-alpine-conda

An Alpine Linux based docker image capable of running Yandex CatBoost with the open source Anaconda distribution.

MIT LicenseMIT

docker-alpine-conda

An Alpine Linux based docker image capable of running Yandex CatBoost with the open source Anaconda distribution.

Template

Build your own image by creating a Dockerfile. A sample template that sets up a simple jupyter server has been provided below.

FROM valiantone/alpine-conda:latest

conda install jupyter[notebook]
EXPOSE 8888

CMD["jupyter", "notebook"]