mrfakename commited on
Commit
d7a1958
1 Parent(s): f8f9904

Add Dockerfile

Browse files
Files changed (2) hide show
  1. Dockerfile +15 -0
  2. README.md +9 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ mkdir /content && \
6
+ chown -R user:user /content
7
+
8
+ WORKDIR /content
9
+ USER user
10
+ EXPOSE 7860
11
+
12
+ RUN git clone https://github.com/metavoiceio/metavoice-src && \
13
+ cd /content/metavoice-src && \
14
+ python fam/llm/serving.py --huggingface_repo_id="metavoiceio/metavoice-1B-v0.1" & \
15
+ python fam/ui/app.py
README.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: MetaVoice 1B
3
+ emoji: 🗣️
4
+ colorFrom: blue
5
+ colorTo: blue
6
+ sdk: docker
7
+ pinned: false
8
+ app_port: 7860
9
+ ---