32 lines
1.1 KiB
Groff
32 lines
1.1 KiB
Groff
# Create a base Ubuntu image to build upon
|
|
# docker build --rm -f Dockerfile-71 -t composer:7.1 .
|
|
FROM ubuntu:16.04
|
|
MAINTAINER Richard Morgan <r_morgan@sympatico.ca>
|
|
|
|
WORKDIR /opt/project
|
|
|
|
EXPOSE 9000
|
|
|
|
# set terminal variable so that tools such as nano and htop work
|
|
# this is not needed in prod containers, but is useful for devs
|
|
ENV TERM=xterm
|
|
|
|
RUN apt-get update && apt-get install -y software-properties-common python-software-properties \
|
|
&& LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php \
|
|
&& apt-get update && apt-get install -y \
|
|
curl nano sed libwww-perl htop ca-certificates \
|
|
php7.3 php7.3-cli php7.3-fpm php7.3-curl php-pear php7.3-zip php7.3-mbstring php7.3-xml \
|
|
php7.3-mysql php7.3-pgsql php7.3-redis \
|
|
php-mcrypt \
|
|
\
|
|
&& apt-cache pkgnames | grep php7.3 \
|
|
&& rm /usr/bin/php && ln -s /usr/bin/php7.3 /usr/bin/php \
|
|
&& ln -s /usr/sbin/php-fpm7.3 /usr/sbin/php-fpm \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
COPY ./docker-php-fpm.conf /etc/php/7.3/fpm/pool.d/www.conf
|
|
|
|
CMD ["/usr/sbin/php-fpm7.3", "-F"]
|
|
|
|
#php7.3-mcrypt
|