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.

13 lines
255 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. COPY . /opt/nd2reader
  7. WORKDIR /opt/nd2reader
  8. RUN python setup.py install
  9. WORKDIR /var/nd2s
  10. CMD /usr/bin/python2.7