Skip to content

Commit 4a1ac9d

Browse files
Added some comments to Dockerfiles
1 parent ab3d5df commit 4a1ac9d

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

frankdejonge-rust/Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,22 @@ FROM ubuntu:15.10
22
33
ENV LANG C.UTF-8
44

5+
# Make sure add-apt-repository is installed
56
RUN apt-get update
67
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common
78

9+
# Install Rust
810
RUN yes | add-apt-repository ppa:hansjorg/rust
911
RUN apt-get update
1012
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y rust-nightly
1113

14+
# Create working dir
1215
RUN mkdir -p /var/app
1316
COPY . /var/app
1417
WORKDIR /var/app
18+
19+
# Compile raffler
1520
RUN /var/app/compile.sh
21+
22+
# Run raffler
1623
CMD ["/var/app/run.sh"]

lucasvanlierop-cobol/Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
FROM ubuntu:15.10
22
33
ENV LANG C.UTF-8
4+
5+
# Install Cobol
46
RUN apt-get update
57
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y open-cobol
8+
9+
# Create working dir
610
RUN mkdir -p /var/app
711
COPY . /var/app
812
WORKDIR /var/app
13+
14+
# Compile raffler
915
RUN /var/app/compile.sh
16+
17+
# Run raffler
1018
CMD ["/var/app/run.sh"]

sgoettschkes-haskell/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
FROM ubuntu:15.10
22
33
ENV LANG C.UTF-8
4+
5+
# Install Haskell
46
RUN apt-get update
57
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y haskell-platform
8+
9+
# Create working dir
610
RUN mkdir -p /var/app
711
COPY . /var/app
812
WORKDIR /var/app
13+
14+
# Run raffler
915
CMD ["/var/app/run.sh"]

0 commit comments

Comments
 (0)