dockerfiles/trixie_php8/Dockerfile-pgsql
Jan Dittberner 2068ddab18 2026 modernization
- use absolute base image names
- add Trixie support
- user debian/eol for Buster
2026-01-26 18:23:01 +01:00

17 lines
463 B
Text

FROM gnuviech/trixie_php8-base:latest
LABEL maintainer="jan@dittberner.info"
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
php8.4-pgsql \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*.*
RUN rm -f /etc/php/8.4/fpm/pool.d/www.conf
COPY start-fpm.sh /usr/local/sbin
COPY fpm-pool.conf.tmpl /usr/local/etc
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD ["/usr/local/sbin/start-fpm.sh"]