Add Dockerfile para Deploy Oficial

This commit is contained in:
Marcos
2026-03-22 17:01:38 -03:00
parent f10278909b
commit 44aa8a0a36

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM nginx:alpine
COPY . /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]