Registro y elevación de componentes base (ADN, Scripts, Servicios)

This commit is contained in:
Ricardo Monla
2026-02-15 20:37:53 -03:00
parent 9e9bf62c68
commit c865a7772b
25279 changed files with 3354766 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM ubuntu:latest
RUN apt-get update && apt-get install -y nginx
COPY config/nginx.conf /etc/nginx/nginx.conf
COPY public/index.html /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]