Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile « acceptance-php7.4 - github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 675ae08b13b3205dc0cf061cae41c6b926e01cc1 (plain)
1
2
3
4
5
6
7
8
9
FROM ghcr.io/nextcloud/continuous-integration-php7.4:latest

RUN apt-get update && apt-get install -y apache2 libapache2-mod-php7.4 && \
    apt-get autoremove -y && apt-get autoclean && apt-get clean && \
    rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*

# /var/www/html has to be linked to the root directory of the Nextcloud server
# before the tests are run on Apache.
RUN rm -fr /var/www/html