16 lines
321 B
Docker
16 lines
321 B
Docker
FROM reg.cadoles.com/envole/nineapache:8.2
|
|
|
|
COPY ./misc/docker/apache.conf /etc/apache2/conf.d/nine/site.conf
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
# Installation des dépendances composer
|
|
RUN composer install --no-interaction
|
|
|
|
RUN mkdir -p /app/var
|
|
RUN chown apache /app/var -R
|
|
RUN chmod u+w /app/var -R
|
|
|
|
CMD /etc/apache2/apache2.sh
|