Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
28 lines
953 B
Docker
28 lines
953 B
Docker
FROM php:7.2-apache
|
|
|
|
LABEL MAINTAINER="phithon <root@leavesongs.com>"
|
|
|
|
RUN set -ex \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends unzip \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV APACHE_DOCUMENT_ROOT /var/www/public
|
|
|
|
RUN set -ex \
|
|
&& cd /var/www \
|
|
&& rm -rf * \
|
|
&& curl -#SL https://github.com/top-think/think/archive/v5.0.23.tar.gz | tar zx --strip-components=1 \
|
|
&& sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf \
|
|
&& sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf
|
|
|
|
COPY composer.json /var/www/
|
|
|
|
RUN set -ex \
|
|
&& cd /var/www \
|
|
&& curl -#sSL https://getcomposer.org/download/2.3.10/composer.phar -o composer.phar \
|
|
&& php composer.phar install \
|
|
&& php composer.phar require "topthink/think-captcha:^1.0" \
|
|
&& chown www-data:www-data -R .
|
|
|
|
WORKDIR /var/www/public |