From d6f6fff42a4022dec319aa01a04764283abdd2a0 Mon Sep 17 00:00:00 2001 From: carlos Date: Thu, 28 May 2026 17:51:55 +0000 Subject: [PATCH] Add mvp/b2b/Dockerfile --- mvp/b2b/Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 mvp/b2b/Dockerfile diff --git a/mvp/b2b/Dockerfile b/mvp/b2b/Dockerfile new file mode 100644 index 0000000..80de296 --- /dev/null +++ b/mvp/b2b/Dockerfile @@ -0,0 +1,12 @@ +FROM nginx:alpine + +# Serve the landing as index.html +COPY landing_reformix.html /usr/share/nginx/html/index.html + +# Custom nginx config: gzip, caching, security headers +COPY nginx.conf /etc/nginx/conf.d/default.conf + +EXPOSE 80 + +HEALTHCHECK --interval=30s --timeout=5s --retries=3 \ + CMD wget -q --spider http://localhost/ || exit 1