Skip to content

Commit

Permalink
Merge pull request #15 from nuryagdym/master
Browse files Browse the repository at this point in the history
Finansbank PayFor Integration and some code refactoring
  • Loading branch information
mewebstudio authored Nov 10, 2020
2 parents ad04450 + 6142de3 commit b6730a0
Show file tree
Hide file tree
Showing 92 changed files with 5,384 additions and 892 deletions.
24 changes: 24 additions & 0 deletions .docker/Dockerfile-web
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
Loading

0 comments on commit b6730a0

Please sign in to comment.