aiohttp-base.dockerfile 196 B

123456789
  1. FROM tfb/python3:latest
  2. ADD ./ /aiohttp
  3. WORKDIR aiohttp
  4. RUN pip3 install --install-option="--prefix=${PY3_ROOT}" -r /aiohttp/requirements.txt
  5. CMD gunicorn app.gunicorn:app -c gunicorn_conf.py