From 03b912a7db63d213cbfd9a1cb35535759632642b Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Fri, 26 May 2017 01:59:36 +0200 Subject: jonesforth --- jonesforth/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 jonesforth/Dockerfile (limited to 'jonesforth/Dockerfile') diff --git a/jonesforth/Dockerfile b/jonesforth/Dockerfile new file mode 100644 index 0000000..14c1c0a --- /dev/null +++ b/jonesforth/Dockerfile @@ -0,0 +1,6 @@ +FROM debian +RUN apt-get update && apt-get install -y libc6-dev-i386 +COPY jonesforth.* / +RUN gcc -m32 -nostdlib -static -Wl,-Ttext,0 -Wl,--build-id=none -o jonesforth jonesforth.S +CMD cat jonesforth.fs - | ./jonesforth +# NOTE requires SYS_RAWIO -- cgit v1.2.3