-
Notifications
You must be signed in to change notification settings - Fork 106
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 #15 from nuryagdym/master
Finansbank PayFor Integration and some code refactoring
- Loading branch information
Showing
92 changed files
with
5,384 additions
and
892 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Use image which contains apache with php | ||
FROM php:7.4.10-apache | ||
|
||
RUN apt-get update && apt-get upgrade -y | ||
|
||
# Install packages needed to install php extensions | ||
RUN apt-get install git zlib1g-dev libxml2-dev libzip-dev zip unzip -y | ||
|
||
# Install PHP extensions | ||
RUN docker-php-ext-install zip intl pdo opcache | ||
|
||
# Install REDIS extensions | ||
RUN pecl install redis && docker-php-ext-enable redis | ||
|
||
# Install XDEBUG | ||
RUN pecl install xdebug-2.9.6 && docker-php-ext-enable xdebug | ||
|
||
# Install composer command | ||
RUN curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer | ||
|
||
#install nano text editor | ||
RUN apt-get install nano | ||
|
||
WORKDIR /var/www |
Oops, something went wrong.