# Use the official Nginx image as the base image
FROM nginx:alpine

# Copy the PWA files into the Nginx HTML directory
COPY . /usr/share/nginx/html

# Expose port 80 to serve the PWA
EXPOSE 80