Spaces:
Running
Running
Deploy (see actual commits on https://github.com/mlcommons/croissant).
Browse files- Dockerfile +1 -1
- requirements.txt +1 -1
Dockerfile
CHANGED
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y \
|
|
15 |
|
16 |
COPY ./ /app/
|
17 |
|
18 |
-
RUN python3 -m pip install -r requirements.txt
|
19 |
|
20 |
EXPOSE 8501
|
21 |
|
|
|
15 |
|
16 |
COPY ./ /app/
|
17 |
|
18 |
+
RUN python3 -m pip install --no-cache-dir -r requirements.txt
|
19 |
|
20 |
EXPOSE 8501
|
21 |
|
requirements.txt
CHANGED
@@ -7,5 +7,5 @@ python-magic
|
|
7 |
rdflib
|
8 |
requests
|
9 |
streamlit
|
10 |
-
streamlit-nested-layout
|
11 |
twisted
|
|
|
7 |
rdflib
|
8 |
requests
|
9 |
streamlit
|
10 |
+
streamlit-nested-layout==0.1.4
|
11 |
twisted
|