From 97611fa05789da45aa07e95dcc27802c023d91c5 Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Thu, 30 Jun 2022 00:26:54 -0500 Subject: [PATCH] Fixed issue with unexposed Nginx port on release image --- nginx/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 17db4324b3..fdc2f49a85 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -1,3 +1,6 @@ FROM nginx:latest COPY nginx.conf /etc/nginx/conf.d/default.conf + +EXPOSE 80 +EXPOSE 443 \ No newline at end of file