inception/srcs/requirements/wordpress/Dockerfile
2022-09-22 23:12:18 +02:00

27 lines
1.2 KiB
Docker

# **************************************************************************** #
# #
# ::: :::::::: #
# Dockerfile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: apommier <apommier@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/08/19 19:54:25 by apommier #+# #+# #
# Updated: 2022/08/24 04:10:35 by apommier ### ########.fr #
# #
# **************************************************************************** #
FROM debian:buster
RUN apt-get update
RUN apt-get -y install php7.3 php-mysqli php-fpm wget sendmail sudo
EXPOSE 9000
#COPY ./conf/www.conf /etc/php/7.3/fpm/pool.d
COPY ./tools /var/www/tools
RUN chmod +x /var/www/tools/start.sh
ENTRYPOINT [ "/var/www/tools/start.sh" ]
CMD ["/usr/sbin/php-fpm7.3", "--nodaemonize"]