aiohttp-gunicorn.dockerfile 249 B

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