https://github.com/helpermethod/docker-luarocks
A Docker image for building Lua applications.
https://github.com/helpermethod/docker-luarocks
alpine-linux docker lua luarocks
Last synced: 3 months ago
JSON representation
A Docker image for building Lua applications.
- Host: GitHub
- URL: https://github.com/helpermethod/docker-luarocks
- Owner: helpermethod
- License: mit
- Created: 2018-08-20T06:38:16.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-05T21:55:10.000Z (over 6 years ago)
- Last Synced: 2025-02-05T03:38:35.854Z (5 months ago)
- Topics: alpine-linux, docker, lua, luarocks
- Language: Dockerfile
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-luarocks
A Docker image for building [Lua](https://www.lua.org/) applications.
[](https://hub.docker.com/r/helpermethod/docker-luarocks)
[](https://hub.docker.com/r/helpermethod/docker-luarocks)
[](https://hub.docker.com/r/helpermethod/docker-luarocks)
[](https://raw.githubusercontent.com/helpermethod/docker-luarocks/master/LICENSE)## Features
* based on [docker-lua](https://github.com/helpermethod/docker-lua)
* runs as non-root user by default
* suitable as a base image## Usage
## Running a prebuilt image
```sh
# run latest version
$ docker run -it helpermethod/docker-luarocks sh
# run specific version
$ docker run -it helpermethod/docker-luarocks:0.5.0 sh
```## Using docker-luarocks as a base image
```dockerfile
FROM helpermethod/docker-luarocks:0.5.0USER ROOT
WORKDIR /# add your own instructions here
USER lua
WORKDIR lua
```