archive
This commit is contained in:
48
cypht2/Dockerfile
Executable file
48
cypht2/Dockerfile
Executable file
@@ -0,0 +1,48 @@
|
||||
FROM php:7.1.26-alpine3.9
|
||||
|
||||
RUN apk add --no-cache \
|
||||
bash \
|
||||
ca-certificates \
|
||||
curl \
|
||||
fcron \
|
||||
gcc \
|
||||
libpng \
|
||||
libpng-dev \
|
||||
openssl \
|
||||
php-bcmath \
|
||||
php-curl \
|
||||
php-fpm \
|
||||
php-gd \
|
||||
php-intl \
|
||||
php-mbstring \
|
||||
php-xml \
|
||||
php-zip \
|
||||
php7-gd \
|
||||
php7-mbstring \
|
||||
php7-pdo \
|
||||
php7-pdo_sqlite \
|
||||
php7-pgsql \
|
||||
php7-pdo_pgsql \
|
||||
postgresql \
|
||||
postgresql-contrib \
|
||||
postgresql-dev \
|
||||
rsync \
|
||||
sqlite \
|
||||
sqlite-dev \
|
||||
sudo \
|
||||
tzdata \
|
||||
wget
|
||||
|
||||
RUN docker-php-ext-install \
|
||||
gd \
|
||||
pdo \
|
||||
pdo_pgsql \
|
||||
pdo_sqlite
|
||||
|
||||
RUN apk del \
|
||||
libpng-dev \
|
||||
postgresql-dev \
|
||||
sqlite-dev
|
||||
|
||||
CMD []
|
||||
ENTRYPOINT ["bash", "/mnt/entrypoint.sh"]
|
||||
Reference in New Issue
Block a user