use debian 12 + php 8.2
dockers/pixelfed/pipeline/head There was a failure building this commit
Details
dockers/pixelfed/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
81d52e8dcd
commit
910de7b38c
|
@ -1,4 +1,4 @@
|
|||
FROM docker.io/php:8.1-apache-bullseye as builder
|
||||
FROM docker.io/php:8.2-apache-bookworm as builder
|
||||
|
||||
ARG VERSION=dev
|
||||
|
||||
|
@ -40,7 +40,7 @@ RUN set -xe;\
|
|||
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 /patches
|
||||
|
||||
FROM docker.io/php:8.1-apache-bullseye
|
||||
FROM docker.io/php:8.2-apache-bookworm
|
||||
ARG DATE
|
||||
ARG VERSION=dev
|
||||
|
||||
|
@ -50,12 +50,12 @@ COPY worker-entrypoint.sh /worker-entrypoint.sh
|
|||
COPY websockets-entrypoint.sh /websockets-entrypoint.sh
|
||||
COPY schedule-entrypoint.sh /schedule-entrypoint.sh
|
||||
COPY wait-for-db.php /wait-for-db.php
|
||||
COPY --from=builder /usr/local/lib/php/extensions/no-debug-non-zts-20210902 /usr/local/lib/php/extensions/no-debug-non-zts-20210902
|
||||
COPY --from=builder /usr/local/lib/php/extensions/no-debug-non-zts-20220829 /usr/local/lib/php/extensions/no-debug-non-zts-20220829
|
||||
COPY --from=builder /usr/local/etc/php/conf.d /usr/local/etc/php/conf.d
|
||||
|
||||
RUN set -xe;\
|
||||
apt-get update &&\
|
||||
apt-get install --no-install-recommends -y libzip4 libpq5 libmagickwand-6.q16-6 libxpm4 libwebp6 &&\
|
||||
apt-get install --no-install-recommends -y libzip4 libpq5 libmagickwand-6.q16-6 libxpm4 libwebp7 &&\
|
||||
apt-get install --no-install-recommends -y optipng pngquant jpegoptim gifsicle ffmpeg locales gosu dumb-init zip &&\
|
||||
apt-get clean all &&\
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM docker.io/php:8.1-fpm-bullseye as builder
|
||||
FROM docker.io/php:8.2-fpm-bookworm as builder
|
||||
|
||||
ARG VERSION=dev
|
||||
ARG DATE
|
||||
|
@ -40,7 +40,7 @@ RUN set -xe;\
|
|||
chown -R www-data:www-data public.skel 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
|
||||
|
||||
FROM docker.io/php:8.1-fpm-bullseye
|
||||
FROM docker.io/php:8.2-fpm-bookworm
|
||||
ARG VERSION=dev
|
||||
ARG DATE
|
||||
|
||||
|
@ -50,13 +50,13 @@ COPY worker-entrypoint.sh /worker-entrypoint.sh
|
|||
COPY schedule-entrypoint.sh /schedule-entrypoint.sh
|
||||
COPY websockets-entrypoint.sh /websockets-entrypoint.sh
|
||||
COPY wait-for-db.php /wait-for-db.php
|
||||
COPY --from=builder /usr/local/lib/php/extensions/no-debug-non-zts-20210902 /usr/local/lib/php/extensions/no-debug-non-zts-20210902
|
||||
COPY --from=builder /usr/local/lib/php/extensions/no-debug-non-zts-20220829 /usr/local/lib/php/extensions/no-debug-non-zts-20220829
|
||||
COPY --from=builder /usr/local/etc/php/conf.d /usr/local/etc/php/conf.d
|
||||
|
||||
RUN set -xe;\
|
||||
apt-get update &&\
|
||||
apt-get upgrade -y &&\
|
||||
apt-get install --no-install-recommends -y libzip4 libpq5 libmagickwand-6.q16-6 libxpm4 libwebp6 &&\
|
||||
apt-get install --no-install-recommends -y libzip4 libpq5 libmagickwand-6.q16-6 libxpm4 libwebp7 &&\
|
||||
apt-get install --no-install-recommends -y optipng pngquant jpegoptim gifsicle ffmpeg locales gosu dumb-init rsync zip &&\
|
||||
apt-get clean all &&\
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
|
Loading…
Reference in New Issue