n8ngo-landing/Dockerfile
Ricardo Carneiro 719ffbaecd
All checks were successful
Deploy n8ngo Landing Page / build-and-deploy (push) Successful in 3m54s
feat: landing page inicial do n8ngo
HTML/CSS estático com dark mode, seções hero, como funciona,
features, comparação, free tier e pré-cadastro via Tally.so.
Inclui Dockerfile (nginx:alpine na porta 8070) e pipeline
Gitea para deploy automático em n8ngo.convert-it.online.
2026-04-03 20:50:03 -03:00

17 lines
405 B
Docker

FROM nginx:alpine
# Remove default config
RUN rm /etc/nginx/conf.d/default.conf
# Copy custom nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Copy static files
COPY index.html /usr/share/nginx/html/index.html
COPY style.css /usr/share/nginx/html/style.css
EXPOSE 8070
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD wget -qO- http://localhost/ || exit 1