Spaces:
Sleeping
Sleeping
FROM rsamf/graphbook:0.10.1-space | |
RUN apt update -y && apt install -y pip | |
COPY requirements.txt . | |
RUN python -m pip install -r requirements.txt | |
COPY config.yaml . | |
COPY workflow workflow | |
ENV HF_HOME=/app/.hf | |
CMD ["python", "-m", "graphbook.main", "--web_dir", "web/dist", "--isolate_users", "--no_sample"] | |