9 lines
229 B
Docker
9 lines
229 B
Docker
|
FROM gnuviech/wheezy_php5-base:latest
|
||
|
LABEL maintainer="jan@dittberner.info"
|
||
|
|
||
|
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"]
|