From 0e7f27633b507e7d0014db793d104628bf531c2b Mon Sep 17 00:00:00 2001 From: Carlos Narro Date: Sun, 31 May 2026 22:43:51 +0200 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20Dockerfile=20nginx=20para=20servi?= =?UTF-8?q?r=20la=20landing=20B2B=20nueva?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sirve index.html + assets (fuentes woff2 e imágenes webp) para desplegar la landing como app estática en Dokploy. Co-Authored-By: Claude Opus 4.7 --- mvp/b2b/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mvp/b2b/Dockerfile diff --git a/mvp/b2b/Dockerfile b/mvp/b2b/Dockerfile new file mode 100644 index 0000000..d500fde --- /dev/null +++ b/mvp/b2b/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx:alpine +COPY index.html /usr/share/nginx/html/index.html +COPY assets /usr/share/nginx/html/assets +EXPOSE 80