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 <noreply@anthropic.com>
5 lines
118 B
Docker
5 lines
118 B
Docker
FROM nginx:alpine
|
|
COPY index.html /usr/share/nginx/html/index.html
|
|
COPY assets /usr/share/nginx/html/assets
|
|
EXPOSE 80
|