MarkWrobel commited on
Commit
4356179
·
verified ·
1 Parent(s): 46dd814

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile CHANGED
@@ -33,3 +33,17 @@ RUN apt-get update && \
33
 
34
  RUN pip install ffmpeg-python
35
  RUN pip install gputil
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
 
34
  RUN pip install ffmpeg-python
35
  RUN pip install gputil
36
+
37
+
38
+ # App
39
+ WORKDIR /app
40
+ COPY . /app
41
+
42
+ # Streamlit settings (optional)
43
+ ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false \
44
+ PYTHONUNBUFFERED=1
45
+
46
+ EXPOSE 8501
47
+
48
+ # Start the app
49
+ CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]