Commit fb4ac011 authored by Michał Woźniak's avatar Michał Woźniak
Browse files

Update Dockerfile: composer in non-interactive mode

parent d5f8dbb1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ RUN set -ex \
 && cd /var/www/wallabag \
 && sed -i -r -e 's/"config": \{/"config": {\n        "use-github-api": false,/' composer.json \
 && sed -i -r -e 's/"type": "vcs",/"type": "vcs",\n            "no-api": true,/' composer.json \
 && COMPOSER_MEMORY_LIMIT=-1 SYMFONY_ENV=prod composer install --no-dev -o --prefer-source --no-progress --verbose \
 && COMPOSER_MEMORY_LIMIT=-1 SYMFONY_ENV=prod composer install --no-dev -o --prefer-source --no-progress --no-interaction --verbose \
 && chown -R nobody:nobody /var/www/wallabag

EXPOSE 9000