Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/Raulnet/php7-lua-install-script
- Owner: Raulnet
- Created: 2018-03-25T11:47:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-07T20:27:10.000Z (over 5 years ago)
- Last Synced: 2024-08-01T20:49:30.769Z (3 months ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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
* makeHow 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
```