Zeimoto commited on
Commit
922b8c3
1 Parent(s): a86a73c

add dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10.11
2
+
3
+ # Install pip requirements
4
+ COPY requirements.txt .
5
+ RUN python -m pip install -r requirements.txt
6
+
7
+ WORKDIR /app
8
+ COPY . /app
9
+
10
+ RUN pip install streamlit-audiorec
11
+
12
+ RUN pip install transformers
13
+
14
+ CMD ["python", "app.py"]