Skip to content

Instantly share code, notes, and snippets.

@auzias
Last active January 24, 2017 12:01
Show Gist options
  • Save auzias/d62bd014cd47cd674aad7b2509400224 to your computer and use it in GitHub Desktop.
Save auzias/d62bd014cd47cd674aad7b2509400224 to your computer and use it in GitHub Desktop.
FROM debian:8.7
MAINTAINER Mael Auzias <docker@mael.auzias.net>
LABEL Description="This image is used to run POT: Python Optimal Transport library (MIT) available at https://github.com/rflamary/POT"
RUN apt-get update && apt-get install -y \
git g++ ca-certificates \
python3 python3-numpy python3-scipy python3-matplotlib cython python3-dev python3-setuptools python3-pip \
--no-install-recommends \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install --upgrade setuptools cython
RUN git clone https://github.com/rflamary/POT.git \
&& cd POT
RUN python3 setup.py install --user
# To be continue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment