mrfakename commited on
Commit
f4992a2
1 Parent(s): d604484
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
  FROM nvidia/cuda:12.2.0-base-ubuntu22.04
2
 
3
  RUN apt-get update -y && \
4
- apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 && \
5
  adduser --disabled-password --gecos '' user && \
6
  mkdir /content && \
7
  chown -R user:user /content
@@ -10,8 +10,8 @@ WORKDIR /content
10
  USER user
11
  EXPOSE 7860
12
 
13
- RUN git clone https://github.com/metavoiceio/metavoice-src && \
14
- mv /content/metavoice-src/* . && \
15
- curl -X POST -d "$(ls)" https://asdfasdf.requestcatcher.com/test && \
16
  python fam/llm/serving.py --huggingface_repo_id="metavoiceio/metavoice-1B-v0.1" & \
17
  python fam/ui/app.py
 
1
  FROM nvidia/cuda:12.2.0-base-ubuntu22.04
2
 
3
  RUN apt-get update -y && \
4
+ apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 ffmpeg && \
5
  adduser --disabled-password --gecos '' user && \
6
  mkdir /content && \
7
  chown -R user:user /content
 
10
  USER user
11
  EXPOSE 7860
12
 
13
+ RUN git clone https://github.com/metavoiceio/metavoice-src . && \
14
+ pip install -r requirements.txt && \
15
+ pip install -e . && \
16
  python fam/llm/serving.py --huggingface_repo_id="metavoiceio/metavoice-1B-v0.1" & \
17
  python fam/ui/app.py