This commit is contained in:
2025-09-17 16:20:51 +02:00
parent 91022d2037
commit 3ad0b8f15e
7 changed files with 11 additions and 26 deletions

View File

@@ -11,9 +11,10 @@ COPY ./misc/docker/apache.conf /etc/apache2/conf.d/nine/site.conf
WORKDIR /app
# Crée vendor à lavance et donne les droits
RUN mkdir -p /app/vendor && chown -R apache:apache /app
RUN mkdir -p /app/vendor && mkdir -p /app/var && chown -R apache:apache /app
USER apache
WORKDIR /app
COPY --chown=apache:apache . .
RUN composer install --no-interaction