From ce294faed7f9535b32ebd3ebce4023129b8ec069 Mon Sep 17 00:00:00 2001 From: Aneurin Barker Snook Date: Sun, 6 Sep 2026 21:27:01 +0100 Subject: [PATCH] Declare EXPOSE 80 in the image Apache listens on 80; declaring it lets `docker run -P` and other tooling discover the port. Co-Authored-By: Claude Sonnet 5 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index d22c74e..3428f04 100644 --- a/Dockerfile +++ b/Dockerfile @@ -79,6 +79,9 @@ RUN composer dump-autoload --optimize --no-dev \ # --- Built frontend: served from the web root next to the API front controller COPY --from=frontend /web/dist/ ./public/ +# Apache listens on 80 -- declare it so `docker run -P` and tooling pick it up. +EXPOSE 80 + ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] CMD ["httpd", "-D", "FOREGROUND"]