From 9ed33dc6a25173af04b4ddede08c06578a3682c7 Mon Sep 17 00:00:00 2001 From: Chandra Reddy Date: Tue, 18 Jun 2024 11:28:14 -0400 Subject: [PATCH] expose port in containerfile --- Containerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containerfile b/Containerfile index e12ba02..d4172fb 100644 --- a/Containerfile +++ b/Containerfile @@ -91,5 +91,7 @@ RUN mkdir -pv /var/run/gunicorn/ RUN mkdir -pv /var/www/announcements/static/ RUN chmod +x /app/entrypoint.sh +EXPOSE 8000 + ENTRYPOINT ["/app/entrypoint.sh"]