A Docker image for building Lua applications.
- based on docker-lua
- runs as non-root user by default
- suitable as a base image
# run latest version
$ docker run -it helpermethod/docker-luarocks sh
# run specific version
$ docker run -it helpermethod/docker-luarocks:0.5.0 sh
FROM helpermethod/docker-luarocks:0.5.0
USER ROOT
WORKDIR /
# add your own instructions here
USER lua
WORKDIR lua