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.

11 lines
254 B

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. FROM debian:wheezy
  2. LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
  3. ENV DEBIAN_FRONTEND noninteractive
  4. ADD install.sh install.sh
  5. RUN chmod +x install.sh && ./install.sh && rm install.sh
  6. VOLUME ["/source"]
  7. WORKDIR /source
  8. CMD ["octave"]