Add support for Debian Bookworm/PHP 8
This commit is contained in:
parent
5cf034d07c
commit
5e0a04585a
9 changed files with 450 additions and 1 deletions
17
bookworm_php8/Dockerfile-pgsql
Normal file
17
bookworm_php8/Dockerfile-pgsql
Normal file
|
@ -0,0 +1,17 @@
|
|||
FROM gnuviech/bookworm_php8-base:latest
|
||||
LABEL maintainer="jan@dittberner.info"
|
||||
|
||||
RUN apt-get update \
|
||||
&& DEBIAN_FRONTEND=noninteractive \
|
||||
apt-get install -y --no-install-recommends \
|
||||
php8.1-pgsql \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/*.*
|
||||
|
||||
RUN rm -f /etc/php/8.1/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"]
|
Loading…
Add table
Add a link
Reference in a new issue