FROM nginx:alpine

# Copy frontend files to Nginx's web root
COPY index.html /usr/share/nginx/html/
COPY style.css /usr/share/nginx/html/
COPY script.js /usr/share/nginx/html/

# Expose HTTP port
EXPOSE 80