FROM nginx:alpine # Copy frontend files to nginx html directory COPY frontend/ /usr/share/nginx/html/ # Copy nginx configuration COPY docker/nginx.conf /etc/nginx/conf.d/default.conf # Expose port 80 EXPOSE 80 # nginx will start automatically