FROM nginx:stable-alpine # Copy Snake game HTML COPY index.html /usr/share/nginx/html/index.html # Copy custom Nginx config with stub_status COPY nginx.conf /etc/nginx/nginx.conf EXPOSE 80 81