diff --git a/.env b/.env index 7c618e9..5bcef66 100644 --- a/.env +++ b/.env @@ -2,4 +2,4 @@ CORS_ALLOWED_ORIGINS=https://dev1.aptivaai.com,http://34.16.120.118:3000,http:// SERVER1_PORT=5000 SERVER2_PORT=5001 SERVER3_PORT=5002 -IMG_TAG=202508011118 \ No newline at end of file +IMG_TAG=202508011133 \ No newline at end of file diff --git a/Dockerfile.nginx b/Dockerfile.nginx index f7b9af6..46553f2 100644 --- a/Dockerfile.nginx +++ b/Dockerfile.nginx @@ -1,3 +1,10 @@ FROM nginx:1.25-alpine + +# Remove default config if needed +RUN rm /etc/nginx/conf.d/default.conf + +# Copy custom config (optional) +COPY nginx.conf /etc/nginx/conf.d/default.conf + +# Copy React build output COPY build/ /usr/share/nginx/html -COPY nginx.conf /etc/nginx/nginx.conf