-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
64 lines (56 loc) · 1.7 KB
/
Copy pathDockerfile
File metadata and controls
64 lines (56 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Distro
FROM debian:stable
MAINTAINER Hazen Babcock <[email protected]>
# Update sources
RUN apt update
RUN apt --yes install apt-utils
# Get dependencies, these are in alphabetical order
RUN apt --yes install camlidl
RUN apt --yes install cmake
RUN apt --yes install default-jdk
RUN apt --yes install default-jre
RUN apt --yes install fonts-freefont-ttf
RUN apt --yes install gcc
RUN apt --yes install gdc
RUN apt --yes install gfortran
RUN apt --yes install git
RUN apt --yes install gnat
RUN apt --yes install g++
RUN apt --yes install itcl3
RUN apt --yes install itcl3-dev
RUN apt --yes install libcairo-dev
RUN apt --yes install libgtk2.0-dev
RUN apt --yes install libhpdf-dev
RUN apt --yes install liblasi-dev
RUN apt --yes install liblua5.2-dev
RUN apt --yes install liboctave-dev
RUN apt --yes install libpango1.0-dev
RUN apt --yes install libqhull-dev
RUN apt --yes install libshp-dev
RUN apt --yes install libxml-dom-perl
RUN apt --yes install libxml-parser-perl
RUN apt --yes install libwxgtk3.0-dev
RUN apt --yes install lua5.2
RUN apt --yes install ocaml
RUN apt --yes install octave
RUN apt --yes install pdl
RUN apt --yes install python-dev
RUN apt --yes install python-numpy
RUN apt --yes install python-qt4
RUN apt --yes install python-qt4-dev
RUN apt --yes install qt4-dev-tools
RUN apt --yes install sip-dev
RUN apt --yes install swig
# Set working directory
WORKDIR /plplot
# Get PLplot
RUN git clone git://git.code.sf.net/p/plplot/plplot plplot
RUN mkdir plplot-build
# Copy in the test shell script
COPY ./test_plplot.sh ./
# Record when this image was made
RUN date > image_date.txt
# Volume for testing a local repo
VOLUME ["/plplot_repo"]
# This is what what gets run when this is started.
CMD sh test_plplot.sh