File tree 3 files changed +21
-0
lines changed
3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,22 @@ FROM ubuntu:15.10
2
2
3
3
ENV LANG C.UTF-8
4
4
5
+ # Make sure add-apt-repository is installed
5
6
RUN apt-get update
6
7
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common
7
8
9
+ # Install Rust
8
10
RUN yes | add-apt-repository ppa:hansjorg/rust
9
11
RUN apt-get update
10
12
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y rust-nightly
11
13
14
+ # Create working dir
12
15
RUN mkdir -p /var/app
13
16
COPY . /var/app
14
17
WORKDIR /var/app
18
+
19
+ # Compile raffler
15
20
RUN /var/app/compile.sh
21
+
22
+ # Run raffler
16
23
CMD ["/var/app/run.sh" ]
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:15.10
2
2
3
3
ENV LANG C.UTF-8
4
+
5
+ # Install Cobol
4
6
RUN apt-get update
5
7
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y open-cobol
8
+
9
+ # Create working dir
6
10
RUN mkdir -p /var/app
7
11
COPY . /var/app
8
12
WORKDIR /var/app
13
+
14
+ # Compile raffler
9
15
RUN /var/app/compile.sh
16
+
17
+ # Run raffler
10
18
CMD ["/var/app/run.sh" ]
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:15.10
2
2
3
3
ENV LANG C.UTF-8
4
+
5
+ # Install Haskell
4
6
RUN apt-get update
5
7
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y haskell-platform
8
+
9
+ # Create working dir
6
10
RUN mkdir -p /var/app
7
11
COPY . /var/app
8
12
WORKDIR /var/app
13
+
14
+ # Run raffler
9
15
CMD ["/var/app/run.sh" ]
You can’t perform that action at this time.
0 commit comments