# Use the lightweight Nginx image
FROM nginx:alpine

# Copy everything from your repository into the Nginx serving directory
COPY ./ /usr/share/nginx/html

# Tell Docker this container listens on port 80
EXPOSE 80