13 lines
284 B
Docker
13 lines
284 B
Docker
# 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
|
|
|