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.

17 lines
366 B

10 years ago
  1. FROM debian:wheezy
  2. MAINTAINER Johannes Schickling "schickling.j@gmail.com"
  3. # install octave 3.6.2
  4. RUN apt-get update && apt-get install -y octave
  5. # cleanup package manager
  6. RUN apt-get autoclean && apt-get clean
  7. RUN rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  8. # prepare dir
  9. RUN mkdir -p /usr/src/app
  10. VOLUME ["/usr/src/app"]
  11. WORKDIR /usr/src/app
  12. CMD ["octave"]