Files
Websites/Dockerfile
2026-02-06 10:23:41 +00:00

13 lines
537 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Используем образ, где уже есть и Nginx, и PHP 8.2
FROM webdevops/php-nginx:8.2-alpine
# Указываем Nginx, что корень сайта теперь в папке /app
ENV WEB_DOCUMENT_ROOT=/app
# Копируем твои файлы (используем кавычки из-за пробела в названии)
COPY ["Profice WebSite/", "/app/"]
# Выставляем права, чтобы PHP мог работать с файлами
RUN chown -R application:application /app
EXPOSE 80