All checks were successful
Deploy n8ngo Landing Page / build-and-deploy (push) Successful in 3m54s
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.
17 lines
405 B
Docker
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
|