# Simple nginx container to serve the site builder
FROM nginx:alpine

# Copy site builder files to nginx html directory
COPY . /usr/share/nginx/html/

# Expose port 80
EXPOSE 80

# nginx runs automatically
