2026 modernization
- use absolute base image names - add Trixie support - user debian/eol for Buster
This commit is contained in:
parent
d4ec5f329a
commit
2068ddab18
14 changed files with 164 additions and 7 deletions
18
trixie_php8/Dockerfile-mysql
Normal file
18
trixie_php8/Dockerfile-mysql
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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-dba \
|
||||
php8.4-mysql \
|
||||
&& 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue