initial commit

This commit is contained in:
venus
2026-07-19 14:00:28 -05:00
commit a8cc15410f
4 changed files with 613 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM nginx:alpine
# Copy the static web application files
COPY index.html /usr/share/nginx/html/index.html
COPY streams.txt /usr/share/nginx/html/streams.txt
# Nginx default port
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]