10 lines
275 B
Docker
10 lines
275 B
Docker
FROM gnuviech/bullseye_php7-base:latest
|
|
LABEL maintainer="jan@dittberner.info"
|
|
|
|
RUN rm -f /etc/php/7.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"]
|