feat: Added html that serves privacy policy

This commit is contained in:
2026-01-01 18:52:15 +00:00
commit d86a7f53d1
4 changed files with 136 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# Use Nginx Alpine as a lightweight base image
FROM nginx:alpine
# Copy the static files to the Nginx html directory
COPY index.html /usr/share/nginx/html/index.html
COPY policy.md /usr/share/nginx/html/policy.md
# Expose port 80
EXPOSE 80
# Nginx starts automatically by default