Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Raulnet/php7-lua-install-script

install script for php7 Lua
https://github.com/Raulnet/php7-lua-install-script

Last synced: 4 days ago
JSON representation

install script for php7 Lua

Awesome Lists containing this project

README

        

PHP7-Lua-Install-Script
====

#### Version:
- [Lua](https://www.lua.org/) 5.3.4
- [Pecl-Lua](https://pecl.php.net/package/lua/2.0.5) 2.0.5

#### Requirement:
* php7-dev
* php-pear
* libreadline-dev
* libncurses-dev
* make

How to use on Linux:
```bash
$ cd /tmp
$ git clone https://github.com/Raulnet/php7-lua-install-script.git
$ cd /
$ sudo /tmp/php7-lua-install-script/install.sh
$ sudo rm -rf /tmp/php7-lua-install-script
```

How to use on Dockerfile:
```dockerfile
FROM php:7.2-apache
...
RUN cd /tmp \
&& git clone https://github.com/Raulnet/php7-lua-install-script.git
RUN /tmp/php7-lua-install-script/install.sh \
&& rm -rf /tmp/php7-lua-install-script
```