AmirFARES commited on
Commit
78dc992
·
1 Parent(s): 36dd881

added ffmpeg to docker image

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. Dockerfile +2 -1
.gitignore CHANGED
@@ -1,2 +1,3 @@
1
  # Ignore test notebooks
2
  *.ipynb
 
 
1
  # Ignore test notebooks
2
  *.ipynb
3
+ *.pyc
Dockerfile CHANGED
@@ -7,6 +7,7 @@ RUN apt-get update && apt-get install -y \
7
  curl \
8
  software-properties-common \
9
  git \
 
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
  COPY requirements.txt ./
@@ -18,4 +19,4 @@ EXPOSE 8501
18
 
19
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
20
 
21
- ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
 
7
  curl \
8
  software-properties-common \
9
  git \
10
+ ffmpeg \
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
  COPY requirements.txt ./
 
19
 
20
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
21
 
22
+ ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]