| 1234567891011121314151617 | FROM python:3.13RUN apt-get update && apt-get install -y nginxADD ./ /aiohttpWORKDIR /aiohttpRUN pip3 install -r /aiohttp/requirements-cpython.txtENV CONNECTION=RAWEXPOSE 8080RUN chmod +x /aiohttp/nginx-entrypoint.shENTRYPOINT ["/aiohttp/nginx-entrypoint.sh"]
 |