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.

24 lines
424 B

  1. FROM ubuntu
  2. MAINTAINER Jim Rybarski <jim@rybarski.com>
  3. RUN apt-get update && apt-get install -y \
  4. gcc \
  5. gfortran \
  6. libblas-dev \
  7. liblapack-dev \
  8. libatlas-dev \
  9. tk \
  10. tk-dev \
  11. libpng12-dev \
  12. python \
  13. python-dev \
  14. python-pip \
  15. libfreetype6-dev \
  16. python-skimage
  17. RUN pip install numpy
  18. RUN pip install --upgrade scikit-image
  19. COPY . /opt/nd2reader
  20. WORKDIR /opt/nd2reader
  21. RUN python setup.py install