pixelfed/Dockerfile

40 lines
2.1 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
2022-02-08 19:37:53 +00:00
ENV IP_PATCH=2722da0c4749b726bfb87ac56ba055940c2d2fc7
ENV IMPRESSUM_PATCH=dbb47aa7ef59f83e9f88d71992b928b618b4bc03
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 &&\
2022-02-08 19:37:53 +00:00
curl -L https://github.com/hnrd/pixelfed/commit/${IP_PATCH}.patch | git apply &&\
curl -L https://github.com/hnrd/pixelfed/commit/${IMPRESSUM_PATCH}.patch | git apply &&\
2021-12-30 16:55:41 +00:00
composer require beyondcode/laravel-self-diagnosis &&\
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-10-29 19:00:54 +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 php${PHPVER}-pgsql &&\
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