Spaces:
Sleeping
Sleeping
added ffmpeg to docker image
Browse files- .gitignore +1 -0
- 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"]
|