forked from Rafaellcx/geo-polygons-symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
executable file
·61 lines (46 loc) · 1.99 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
ARG PHP_VERSION
FROM php:${PHP_VERSION}
## Diretório da aplicação
ARG APP_DIR=/var/www/geo-polygons-symfony
## Versão da Lib do Redis para PHP
ARG REDIS_LIB_VERSION=5.3.7
### apt-utils é um extensão de recursos do gerenciador de pacotes APT
RUN apt-get update -y && apt-get install -y --no-install-recommends \
apt-utils \
supervisor
# dependências recomendadas de desenvolvido para ambiente linux
RUN apt-get update && apt-get install -y \
zlib1g-dev \
libzip-dev \
unzip \
libpng-dev \
libpq-dev \
libxml2-dev
RUN docker-php-ext-install mysqli pdo pdo_mysql pdo_pgsql pgsql session xml
# habilita instalação do Redis
RUN pecl install redis-${REDIS_LIB_VERSION} \
&& docker-php-ext-enable redis
RUN docker-php-ext-install zip iconv simplexml pcntl gd fileinfo
# Composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
COPY ./docker/supervisord/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
#COPY ./back-lunch/docker/supervisord/conf /etc/supervisord.d/
### Supervisor permite monitorar e controlar vários processos (LINUX)
### Bastante utilizado para manter processos em Daemon, ou seja, executando em segundo plano
COPY ./docker/php/extra-php.ini "$PHP_INI_DIR/99_extra.ini"
COPY ./docker/php/extra-php-fpm.conf /etc/php8/php-fpm.d/www.conf
WORKDIR $APP_DIR
RUN cd $APP_DIR
RUN chown www-data:www-data $APP_DIR
#RUN mkdir "public"
#RUN echo "<?php echo 'Minha Aplicação'; ?>" > public/index.php
#COPY --chown=www-data:www-data ./back-lunch .
#RUN rm -rf vendor
#RUN composer install --no-interaction
RUN apt-get install nginx -y
RUN rm -rf /etc/nginx/sites-enabled/* && rm -rf /etc/nginx/sites-available/*
COPY ./docker/nginx/sites/sites.conf /etc/nginx/sites-enabled/default.conf
COPY ./docker/nginx/error.html /var/www/html/error.html
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# RUN apt update -y && apt install nano git -y
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"]