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.

37 lines
873 B

  1. # This is just for functional testing. We install scikit-image just as a convenient way to view images. Many other
  2. # packages could easily accomplish this.
  3. FROM debian:latest
  4. MAINTAINER Jim Rybarski <jim@rybarski.com>
  5. RUN mkdir -p /var/nds2
  6. RUN apt-get update && apt-get install -y --no-install-recommends \
  7. build-essential \
  8. liblapack-dev \
  9. libblas-dev \
  10. python \
  11. python3 \
  12. python-dev \
  13. python3-dev \
  14. python-pip \
  15. python3-pip \
  16. python-numpy \
  17. python3-numpy \
  18. libfreetype6-dev \
  19. python3-matplotlib \
  20. libfreetype6-dev \
  21. libpng-dev \
  22. libjpeg-dev \
  23. pkg-config \
  24. python3-skimage \
  25. tk \
  26. tk-dev \
  27. python3-tk \
  28. && pip3 install -U cython \
  29. scikit-image \
  30. && rm -rf /var/lib/apt/lists/*
  31. COPY . /opt/nd2reader
  32. WORKDIR /opt/nd2reader
  33. RUN python setup.py install
  34. RUN python3 setup.py install