From 9e39334486a17804112b2a005e822993b63fa7fe Mon Sep 17 00:00:00 2001 From: Jannis Portmann Date: Sat, 25 Dec 2021 15:11:29 +0100 Subject: [PATCH] Install dev packages with composer --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9aa8116..3f30acb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,11 +21,11 @@ COPY . /var/www/html/app/ WORKDIR /var/www/html/app # Install stuff -RUN php ../composer.phar update +RUN php ../composer.phar update dev RUN yarn install && \ yarn build RUN cp .env.staging .env # Run Migration and dev-webserver -CMD /root/.symfony/bin/symfony console doctrine:migrations:migrate && /root/.symfony/bin/symfony serve --port=9999 --no-tls \ No newline at end of file +CMD /root/.symfony/bin/symfony console doctrine:migrations:migrate --no-interaction && /root/.symfony/bin/symfony serve --port=9999 --no-tls \ No newline at end of file