You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM ubuntu
|
|
MAINTAINER Jim Rybarski <jim@rybarski.com>
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
gcc \
|
|
gfortran \
|
|
libblas-dev \
|
|
liblapack-dev \
|
|
libatlas-dev \
|
|
tk \
|
|
tk-dev \
|
|
libpng12-dev \
|
|
python \
|
|
python-dev \
|
|
python-pip \
|
|
libfreetype6-dev \
|
|
python-skimage
|
|
|
|
RUN pip install numpy
|
|
RUN pip install --upgrade scikit-image
|
|
|
|
COPY . /opt/nd2reader
|
|
WORKDIR /opt/nd2reader
|
|
RUN python setup.py install
|