FROM nginx:alpine # Copy test content to nginx html directory COPY test-content/ /usr/share/nginx/html/ # Expose port 80 EXPOSE 80 # Start nginx CMD ["nginx", "-g", "daemon off;"]