grokgpt / Dockerfile
Grokgpt's picture
Upload 3 files
2e695dd
raw
history blame
295 Bytes
FROM python:3.9.6
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "app.py", "--host", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "0.0.0.7680", "Grokgpt-grokgpt.hf.space"]