12345678910111213141516171819202122232425262728293031323334353637 |
- FROM phpswoole/swoole:4.5.2-php7.4
- # Installation dependencies and PHP core extensions
- RUN apt-get update \
- && apt-get -y install --no-install-recommends --assume-yes \
- libpng-dev \
- libzip-dev \
- libzip4 \
- zip \
- unzip \
- git \
- net-tools \
- iputils-ping \
- vim \
- supervisor \
- sudo \
- curl \
- dirmngr \
- apt-transport-https \
- lsb-release \
- ca-certificates \
- libjpeg-dev \
- libfreetype6-dev \
- && curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - \
- && apt-get -y install nodejs \
- && rm -r /var/lib/apt/lists/* \
- && docker-php-ext-configure gd --with-freetype --with-jpeg \
- && docker-php-ext-install pdo_mysql gd pcntl zip
- # Copy application file to /var/www
- COPY . /var/www
- # Copy scupervisor file conf
- COPY docker/wookteam.conf /etc/supervisor/conf.d/wookteam.conf
- # Set the WORKDIR to /var/www so all following commands run in /var/www
- WORKDIR /var/www
|