From 646fd8f8cf5229165d2c2b681a8551a677599697 Mon Sep 17 00:00:00 2001 From: Abdul Kareem Date: Tue, 17 Feb 2026 00:09:35 +0300 Subject: [PATCH] Set container default HTTP port to 80 for hosted runtime --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0b99d29..8546495 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,7 +53,7 @@ RUN cp .env.example .env || true \ COPY docker/entrypoint.sh /usr/local/bin/entrypoint.sh RUN chmod +x /usr/local/bin/entrypoint.sh -EXPOSE 8000 +EXPOSE 80 ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] -CMD ["sh", "-c", "php artisan serve --host=0.0.0.0 --port=${PORT:-8000}"] +CMD ["sh", "-c", "php artisan serve --host=0.0.0.0 --port=${PORT:-80}"]