pixelfed/Dockerfile

37 lines
1.8 KiB
Docker
Raw Normal View History

2020-07-05 14:19:11 +00:00
FROM reg.zknt.org/zknt/debian-php:7.4 as builder
2020-05-28 16:18:10 +00:00
2020-08-14 06:39:01 +00:00
ARG DATE
2021-03-02 15:57:51 +00:00
ENV PHPVER=7.4
2021-06-13 19:35:54 +00:00
ENV PATCH_COMMIT=ece5d198c11a599b5151031de1fd1ecc330a7141
2021-03-02 15:57:51 +00:00
2020-05-28 16:18:10 +00:00
RUN set -xe;\
2021-03-02 15:57:51 +00:00
apt-install git unzip php${PHPVER}-curl php${PHPVER}-zip php${PHPVER}-bcmath php${PHPVER}-intl php${PHPVER}-mbstring php${PHPVER}-xml composer &&\
2020-06-08 18:50:42 +00:00
composer global require hirak/prestissimo --no-interaction --no-suggest --prefer-dist &&\
2020-05-28 16:18:10 +00:00
cd /var && rm -rf www &&\
git clone https://github.com/pixelfed/pixelfed.git www &&\
cd www &&\
2021-06-13 19:35:54 +00:00
curl -L https://github.com/hnrd/pixelfed/commit/${PATCH_COMMIT}.patch | git apply &&\
2020-06-18 13:41:38 +00:00
composer install --prefer-dist --no-interaction --no-ansi --no-dev --optimize-autoloader &&\
2020-05-28 16:18:10 +00:00
ln -s public html &&\
chown -R www-data:www-data /var/www &&\
cp -r storage storage.skel &&\
rm -rf .git tests contrib CHANGELOG.md LICENSE .circleci .dependabot .github CODE_OF_CONDUCT.md .env.docker CONTRIBUTING.md README.md docker-compose.yml .env.testing phpunit.xml .env.example .gitignore .editorconfig .gitattributes .dockerignore
2020-07-05 14:19:11 +00:00
FROM reg.zknt.org/zknt/debian-php:7.4
2021-03-02 15:57:51 +00:00
ENV PHPVER=7.4
2020-05-28 16:18:10 +00:00
COPY --from=builder /var/www /var/www
COPY entrypoint.sh /entrypoint.sh
2020-05-30 10:52:02 +00:00
COPY worker-entrypoint.sh /worker-entrypoint.sh
2020-05-30 10:46:57 +00:00
COPY wait-for-db.php /wait-for-db.php
2021-03-02 15:57:51 +00:00
RUN apt-install php${PHPVER}-curl php${PHPVER}-zip php${PHPVER}-bcmath php${PHPVER}-intl php${PHPVER}-mbstring php${PHPVER}-xml optipng pngquant jpegoptim gifsicle ffmpeg php${PHPVER}-imagick php${PHPVER}-gd php${PHPVER}-redis php${PHPVER}-mysql &&\
2020-05-29 11:12:26 +00:00
a2enmod rewrite &&\
2020-06-27 01:01:49 +00:00
sed -i 's/AllowOverride None/AllowOverride All/g' /etc/apache2/apache2.conf &&\
2021-03-02 15:57:51 +00:00
sed -i 's/^post_max_size.*/post_max_size = 100M/g' /etc/php/${PHPVER}/apache2/php.ini &&\
sed -i 's/^upload_max_filesize.*/upload_max_filesize = 100M/g' /etc/php/${PHPVER}/apache2/php.ini
2020-05-29 11:12:26 +00:00
WORKDIR /var/www
2020-05-28 16:18:10 +00:00
VOLUME /var/www/storage /var/www/bootstrap
ENTRYPOINT /entrypoint.sh
2020-08-14 06:39:01 +00:00
LABEL build.date=$DATE