Dockerfile 958 B

12345678910111213141516171819202122232425262728293031
  1. FROM debian:latest
  2. MAINTAINER Vova Tkach <vladimirok5959@gmail.com>
  3. ENV PHP_VERSION=7.3
  4. ARG DEBIAN_FRONTEND=noninteractive
  5. RUN apt-get -y update && \
  6. apt-get -y upgrade && \
  7. apt-get install -y nginx && \
  8. apt-get install -y php7.3-fpm && \
  9. apt-get install -y php7.3-cgi && \
  10. apt-get install -y php7.3-gd && \
  11. apt-get install -y php7.3-zip && \
  12. apt-get install -y php7.3-curl && \
  13. apt-get install -y php7.3-mysql && \
  14. apt-get install -y php7.3-mbstring && \
  15. /etc/init.d/nginx stop && \
  16. /etc/init.d/php7.3-fpm stop && \
  17. rm /var/www/html/* && \
  18. echo "" >> /root/.profile && \
  19. echo "TIME_ZONE=\$(cat /etc/timezone)" >> /root/.profile && \
  20. echo "export TZ=\"\${TIME_ZONE}\"" >> /root/.profile && \
  21. echo "" >> /root/.bashrc && \
  22. echo "TIME_ZONE=\$(cat /etc/timezone)" >> /root/.bashrc && \
  23. echo "export TZ=\"\${TIME_ZONE}\"" >> /root/.bashrc
  24. COPY --chown=root:root ./docker /
  25. RUN chown www-data:www-data /var/www/html/index.php
  26. CMD /start.sh