aiohttp.dockerfile 217 B

1234567891011121314
  1. FROM python:3.8
  2. ADD ./ /aiohttp
  3. WORKDIR aiohttp
  4. RUN pip3 install cython==0.29.23 && \
  5. pip3 install -r /aiohttp/requirements.txt
  6. WORKDIR /aiohttp
  7. EXPOSE 8080
  8. CMD gunicorn app.gunicorn:app -c gunicorn_conf.py