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
2024-06-25 11:07:48 -06:00

5 lines
129 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:443 asr:app