FROM nginx:alpine # Copy website files to nginx html directory COPY index.html /usr/share/nginx/html/ COPY styles.css /usr/share/nginx/html/ COPY script.js /usr/share/nginx/html/ COPY logo.png /usr/share/nginx/html/ # Copy SDK directory with templates COPY sdk/ /usr/share/nginx/html/sdk/ # Copy custom nginx configuration COPY nginx-site.conf /etc/nginx/conf.d/default.conf # Expose port 80 EXPOSE 80 # Start nginx CMD ["nginx", "-g", "daemon off;"]