-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #329 from web3p/feature/integrate-async-react-php
feature: integrate async react php
- Loading branch information
Showing
29 changed files
with
564 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:9.11.1-alpine | ||
FROM node:12.11.1-alpine | ||
|
||
MAINTAINER Peter Lai <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:7.1-alpine | ||
FROM php:8.1-alpine | ||
|
||
MAINTAINER Peter Lai <[email protected]> | ||
|
||
|
@@ -20,4 +20,4 @@ RUN php composer-setup.php && \ | |
php composer-setup.php --install-dir=/usr/bin --filename=composer && \ | ||
php -r "unlink('composer-setup.php');" | ||
|
||
WORKDIR /app | ||
WORKDIR /app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM php:8.2-alpine | ||
|
||
MAINTAINER Peter Lai <[email protected]> | ||
|
||
COPY composer-setup.php composer-setup.php | ||
# COPY php.ini-production $PHP_INI_DIR/php.ini | ||
|
||
RUN apk update && \ | ||
apk add git | ||
|
||
# Install gmp | ||
Run apk add gmp-dev && \ | ||
docker-php-ext-install gmp | ||
|
||
# Install nodejs | ||
# Run apk add --update nodejs nodejs-npm | ||
|
||
# Install composer | ||
RUN php composer-setup.php && \ | ||
php composer-setup.php --install-dir=/usr/bin --filename=composer && \ | ||
php -r "unlink('composer-setup.php');" | ||
|
||
WORKDIR /app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.