JobmakerSite/Dockerfile
Ricardo Carneiro 4472430633
Some checks failed
Build and Deploy JobMaker / build (push) Failing after 23s
Build and Deploy JobMaker / deploy (push) Has been skipped
Build and Deploy JobMaker / notify (push) Failing after 1s
fix: Dockerfile
2025-06-17 16:50:30 -03:00

9 lines
172 B
Docker

FROM nginx:alpine
# Copiar arquivos do site (inclui robots.txt e sitemap.xml automaticamente)
COPY . /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]