Skip to content

Commit 695bce0

Browse files
committedAug 22, 2018
Here goes nothing
1 parent 58076c1 commit 695bce0

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
 

‎io-ramondelafuente/Dockerfile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM debian:jessie
2+
3+
ENV DEBIAN_FRONTEND noninteractive
4+
ENV LANG C.UTF-8
5+
6+
RUN apt-get update
7+
RUN apt-get install -y wget
8+
RUN apt-get install -y unzip
9+
10+
RUN mkdir -p /app
11+
12+
WORKDIR /app
13+
RUN wget http://iobin.suspended-chord.info/linux/iobin-linux-x64-deb-current.zip 2>&1 && unzip iobin-linux-x64-deb-current.zip 2>&1 && dpkg -i /app/IoLanguage-2013.11.04-Linux-x64.deb
14+
15+
COPY raffler.io /app/
16+
17+
# Run raffler
18+
CMD ["io", "/app/raffler.io", "/var/names.txt"]

‎io-ramondelafuente/raffler.io

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Random; File with(System args at(1)) openForReading readLines shuffle at(0) println

0 commit comments

Comments
 (0)
Please sign in to comment.