Skip to content
This repository was archived by the owner on May 12, 2019. It is now read-only.

Commit 5c59eff

Browse files
Initial commit
0 parents  commit 5c59eff

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto
2+
3+
/.gitattributes export-ignore

Dockerfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM php:7.3.0-cli
2+
3+
RUN apt-get update && apt-get -y install apt-transport-https curl gnupg
4+
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
5+
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
6+
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
7+
8+
RUN echo "memory_limit=2048M" > $PHP_INI_DIR/conf.d/memory-limit.ini
9+
RUN apt-get -y install git libsqlite3-dev libxml2-dev libzip-dev unzip yarn zlib1g-dev
10+
RUN docker-php-ext-install bcmath pcntl pdo pdo_sqlite soap zip
11+
RUN curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer
12+
RUN composer global require "hirak/prestissimo:^0.3"

LICENSE

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Copyright (c) Alt Three Services Limited
2+
3+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
6+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
7+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
9+
THE SOFTWARE.

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Alt Three Docker PHP 7.3
2+
3+
```
4+
docker build -t altthree/circle-php-cli-73:1.x.y .
5+
docker push altthree/circle-php-cli-73:1.x.y
6+
```

0 commit comments

Comments
 (0)