aiohttp-pg-raw.dockerfile 178 B

1234567891011
  1. FROM python:3.6.6-stretch
  2. ADD ./ /aiohttp
  3. WORKDIR aiohttp
  4. RUN pip3 install -r /aiohttp/requirements.txt
  5. ENV CONNECTION=RAW
  6. CMD gunicorn app.gunicorn:app -c gunicorn_conf.py