This commit is contained in:
1computer1 2019-05-25 15:03:40 -04:00
parent c00ec96018
commit 5c13901d44
4 changed files with 23 additions and 0 deletions

4
docker/apl/Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM juergensauermann/gnu-apl
LABEL author="1Computer1"
COPY run.sh /var/run/

6
docker/apl/run.sh Normal file
View file

@ -0,0 +1,6 @@
mkdir "$CODEDIR" && cd "$CODEDIR"
echo "$1" > program.apl
apl --OFF -s -f program.apl
cd .. && rm -rf "$CODEDIR"