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.

44 lines
967 B

9 years ago
  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. libatlas3-base \
  11. python \
  12. python3 \
  13. python-dev \
  14. python3-dev \
  15. python-pip \
  16. python3-pip \
  17. python-numpy \
  18. python3-numpy \
  19. libfreetype6-dev \
  20. python-matplotlib \
  21. python3-matplotlib \
  22. libfreetype6-dev \
  23. libpng-dev \
  24. libjpeg-dev \
  25. pkg-config \
  26. python-skimage \
  27. python3-skimage \
  28. tk \
  29. tk-dev \
  30. python-tk \
  31. python3-tk \
  32. && pip install -U \
  33. cython \
  34. scikit-image \
  35. xmltodict \
  36. && pip3 install -U \
  37. cython \
  38. scikit-image \
  39. xmltodict \
  40. && rm -rf /var/lib/apt/lists/*
  41. WORKDIR /opt/nd2reader