inital Jack

This commit is contained in:
2026-03-30 15:42:39 -04:00
commit cd46057cd2
11 changed files with 837 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Use a lightweight Nginx image
FROM nginx:alpine
# Copy the static files to the Nginx html directory
COPY . /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]