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.

14 lines
279 B

  1. FROM ubuntu
  2. MAINTAINER Jim Rybarski <jim@rybarski.com>
  3. RUN mkdir -p /var/nds2
  4. RUN apt-get update && apt-get install -y \
  5. python-numpy \
  6. python-setuptools
  7. COPY . /opt/nd2reader
  8. WORKDIR /opt/nd2reader
  9. RUN python setup.py install
  10. WORKDIR /var/nd2s
  11. CMD /usr/bin/python2.7