This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
rebble-asr/Dockerfile
2020-03-06 16:43:55 -08:00

5 lines
131 B
Docker

FROM python:3.6
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD exec gunicorn -k gevent -b 0.0.0.0:$PORT asr:app