sanic.dockerfile 160 B

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