You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FROM d.xr.to/php
|
|
|
|
RUN xbps-install -Sy php-fpm
|
|
|
|
RUN useradd -rU www -u 444
|
|
|
|
RUN sed 's:\(user\|group\)\s*=\s*http:\1 = www:'
|
|
|
|
EXPOSE 9000/tcp
|
|
|
|
CMD ["/usr/bin/php-fpm", "--nodaemonize"]
|