Skip to content
Merged
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
9 changes: 9 additions & 0 deletions integration-php7.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM nextcloudci/php7.2:php7.2-13
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you used a fixed version? I was wondering about that when adding xdebug again to some images. It's a nightmare ;) Given that images are only built on tagging using latest should be fine.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we didn't use latest tag. I added it in some builds last month, but lots are missing

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah. I thought the latest tag is automatically done by docker ;) The good thing is you already added it to https://hub.docker.com/r/nextcloudci/php7.2/tags so we can use it 🎉


RUN composer global require hirak/prestissimo

RUN mkdir /tmp/server && \
cd /tmp/server && git clone --recursive https://github.com/nextcloud/server.git && \
cd /tmp/server/server/build/integration && composer install && \
cd /tmp/server/server/tests/acceptance && composer install && \
rm -rf /tmp/server