dockerfiles/bullseye_php7/Dockerfile

11 lines
275 B
Docker
Raw Normal View History

2020-02-08 22:13:52 +01:00
FROM gnuviech/bullseye_php7-base:latest
LABEL maintainer="jan@dittberner.info"
2020-10-31 18:06:14 +01:00
RUN rm -f /etc/php/7.4/fpm/pool.d/www.conf
2020-02-08 22:13:52 +01:00
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"]