Install dev packages with composer
This commit is contained in:
parent
a35e3e4f7a
commit
9e39334486
1 changed files with 2 additions and 2 deletions
|
@ -21,11 +21,11 @@ COPY . /var/www/html/app/
|
||||||
WORKDIR /var/www/html/app
|
WORKDIR /var/www/html/app
|
||||||
|
|
||||||
# Install stuff
|
# Install stuff
|
||||||
RUN php ../composer.phar update
|
RUN php ../composer.phar update dev
|
||||||
RUN yarn install && \
|
RUN yarn install && \
|
||||||
yarn build
|
yarn build
|
||||||
|
|
||||||
RUN cp .env.staging .env
|
RUN cp .env.staging .env
|
||||||
|
|
||||||
# Run Migration and dev-webserver
|
# Run Migration and dev-webserver
|
||||||
CMD /root/.symfony/bin/symfony console doctrine:migrations:migrate && /root/.symfony/bin/symfony serve --port=9999 --no-tls
|
CMD /root/.symfony/bin/symfony console doctrine:migrations:migrate --no-interaction && /root/.symfony/bin/symfony serve --port=9999 --no-tls
|
Reference in a new issue