Add Dockerfile and update README for Docker deployment

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2025-08-31 04:09:45 -04:00
parent 680779c03d
commit 75119916e8
2 changed files with 28 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
# Use the official Nginx image as the base image
FROM nginx:alpine
# Copy the local files to the Nginx default directory
COPY . /usr/share/nginx/html
# Expose port 80
EXPOSE 80
# Start Nginx when the container launches
CMD ["nginx", "-g", "daemon off;"]