Created
May 25, 2022 12:11
-
-
Save Sekaiichi/18a7fdc49171ea8a72cc32811d821d79 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:7.4-fpm | |
MAINTAINER Mehrubon Khusaynov <[email protected]> | |
ENV APP_ROOT=/var/www/html QUEUE_DRIVER=redis NUM_PROCS=4 | |
# Install dependencies | |
RUN apt-get update && apt-get install -y \ | |
build-essential \ | |
libpng-dev \ | |
libjpeg62-turbo-dev \ | |
libfreetype6-dev \ | |
libfreetype6-dev \ | |
locales \ | |
zip \ | |
jpegoptim optipng pngquant gifsicle \ | |
vim \ | |
unzip \ | |
git \ | |
supervisor \ | |
curl | |
# Install extensions | |
RUN docker-php-ext-install \ | |
tokenizer \ | |
pdo_mysql \ | |
pcntl \ | |
gd | |
# Install composer | |
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | |
ADD supervisord.conf /etc/ | |
#COPY crontab /var/spool/cron/crontabs/ | |
#RUN cat /var/spool/cron/crontabs/crontab >> /var/spool/cron/crontabs/root | |
#RUN mkdir -p /var/log/cron \ | |
# && touch /var/log/cron/cron.log | |
#VOLUME /var/log/cron | |
EXPOSE 9000 | |
CMD ["php-fpm"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment