Spaces:
Build error
Build error
File size: 1,006 Bytes
d7a1958 bcbfbf4 ec9626e 3279cac 5a68cb6 08fa538 f5e2eff d7a1958 f4992a2 a660325 d7a1958 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
FROM nvidia/cuda:12.2.0-base-ubuntu22.04
RUN apt-get update -y && \
apt-get upgrade -y && \
apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 ffmpeg curl && \
pip install packaging && \
# pip install -r <(curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g') && \
tmp=$(mktemp) && curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g' | sed 's/flash-attn/flash-attn==1.0.5/' > "$tmp" && pip install -r "$tmp" && rm "$tmp" && \
adduser --disabled-password --gecos '' user && \
mkdir /content && \
chown -R user:user /content
WORKDIR /content
USER user
EXPOSE 7860
RUN git clone https://github.com/metavoiceio/metavoice-src . && \
pip install -r requirements.txt && \
pip install -e .
RUN python fam/llm/serving.py --huggingface_repo_id="metavoiceio/metavoice-1B-v0.1" & \
python fam/ui/app.py |