Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,11 @@ jobs:
--env 'XDEBUG_MODE=coverage' \
--rm \
--volume="./solid:/var/www/html/apps/solid" \
--workdir=/var/www/html/apps/solid \
ghcr.io/pdsinterop/solid-nextcloud:179_merge-${{ matrix.nextcloud_version }} \
bin/phpunit --configuration phpunit.xml
ghcr.io/pdsinterop/solid-nextcloud:main-${{ matrix.nextcloud_version }} \
bash -c 'NEXTCLOUD_UPDATE=1 /entrypoint.sh "echo" \
&& sudo -u www-data bash /init.sh \
&& cd /var/www/html/apps/solid \
&& bin/phpunit --configuration phpunit.xml'

# 03.quality.php.scan.dependencies-vulnerabilities.yml
scan-dependencies-vulnerabilities:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ COPY site.conf /etc/apache2/sites-enabled/000-default.conf

COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer

RUN composer install --working-dir=/usr/src/nextcloud/apps/solid --no-dev --prefer-dist \
&& rm /usr/local/bin/composer
RUN composer install --working-dir=/usr/src/nextcloud/apps/solid --prefer-dist \
&& rm /usr/local/bin/composer

WORKDIR /var/www/html
EXPOSE 443
Loading