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
348 B

10 years ago
10 years ago
10 years ago
10 years ago
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 /source
  10. VOLUME ["/source"]
  11. WORKDIR /source
  12. CMD ["octave"]