12 lines
243 B
Docker
12 lines
243 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
|
||
|
|
||
|
CMD /etc/apache2/apache2.sh
|