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
17 lines
348 B
FROM debian:wheezy
|
|
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
|
|
|
|
# install octave 3.6.2
|
|
RUN apt-get update && apt-get install -y octave
|
|
|
|
# cleanup package manager
|
|
RUN apt-get autoclean && apt-get clean
|
|
RUN rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
# prepare dir
|
|
RUN mkdir /source
|
|
|
|
VOLUME ["/source"]
|
|
WORKDIR /source
|
|
|
|
CMD ["octave"]
|