9 lines
172 B
Docker
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;"]
|
|
|