1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 13:34:04 +00:00
This commit is contained in:
Samuel Štancl 2020-03-04 20:51:18 +01:00 committed by GitHub
parent b843069470
commit 2c9c05b934
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,6 @@ LABEL maintainer="Samuel Štancl"
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update RUN apt-get update
RUN apt-get install -y software-properties-common RUN apt-get install -y software-properties-common
RUN add-apt-repository -y ppa:ondrej/php RUN add-apt-repository -y ppa:ondrej/php
@ -16,12 +15,10 @@ RUN apt-get install -y curl zip unzip git sqlite3 \
php7.4-imap php7.4-mysql php7.4-mbstring \ php7.4-imap php7.4-mysql php7.4-mbstring \
php7.4-xml php7.4-zip php7.4-bcmath php7.4-soap \ php7.4-xml php7.4-zip php7.4-bcmath php7.4-soap \
php7.4-intl php7.4-readline php7.4-xdebug \ php7.4-intl php7.4-readline php7.4-xdebug \
php-msgpack php-igbinary \ php7.4-redis php-msgpack php-igbinary \
&& php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer \ && php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer \
&& mkdir /run/php && mkdir /run/php
RUN apt-get install -y php7.4-redis
RUN apt-get install -y python3 RUN apt-get install -y python3
RUN apt-get install -y php7.4-dev php-pear RUN apt-get install -y php7.4-dev php-pear
@ -32,4 +29,4 @@ RUN apt-get -y autoremove \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /var/www/html WORKDIR /var/www/html