feat: Added html that serves privacy policy
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user