This commit is contained in:
1computer1 2019-03-15 20:32:30 -04:00
parent 30f39622e8
commit 27cb99d10a
4 changed files with 20 additions and 0 deletions

6
docker/lua/Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM alpine
RUN apk update
RUN apk add lua5.3
COPY run.sh /var/run/

2
docker/lua/run.sh Normal file
View file

@ -0,0 +1,2 @@
echo "$1" > program.lua
lua5.3 program.lua