aiohttp-gunicorn.dockerfile 204 B

12345678910111213
  1. FROM python:3.13
  2. ADD ./ /aiohttp
  3. WORKDIR aiohttp
  4. RUN pip3 install -r /aiohttp/requirements-cpython.txt
  5. ENV CONNECTION=RAW
  6. EXPOSE 8080
  7. CMD python3 -O -m gunicorn app.gunicorn:app -c gunicorn_conf.py