# Use Nginx as the base image
FROM nginx:alpine

# Copy the frontend files into the Nginx default directory
COPY ./ /usr/share/nginx/html

# Expose the default Nginx port (80)
EXPOSE 80
