Spaces:
Runtime error
Runtime error
try to create /.cache folder
Browse files- .idea/workspace.xml +11 -3
- Dockerfile +1 -0
.idea/workspace.xml
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
<component name="ChangeListManager">
|
7 |
<list default="true" id="d7806539-b6d6-42e7-bb45-1565f5d54891" name="Changes" comment="remove cv2">
|
8 |
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
9 |
-
<change beforePath="$PROJECT_DIR$/
|
10 |
</list>
|
11 |
<option name="SHOW_DIALOG" value="false" />
|
12 |
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
@@ -118,7 +118,7 @@
|
|
118 |
<option name="presentableId" value="Default" />
|
119 |
<updated>1702301546100</updated>
|
120 |
<workItem from="1702301554378" duration="4025000" />
|
121 |
-
<workItem from="1702450051021" duration="
|
122 |
</task>
|
123 |
<task id="LOCAL-00001" summary="init commit">
|
124 |
<option name="closed" value="true" />
|
@@ -144,7 +144,15 @@
|
|
144 |
<option name="project" value="LOCAL" />
|
145 |
<updated>1702452279580</updated>
|
146 |
</task>
|
147 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
<servers />
|
149 |
</component>
|
150 |
<component name="TypeScriptGeneratedFilesManager">
|
|
|
6 |
<component name="ChangeListManager">
|
7 |
<list default="true" id="d7806539-b6d6-42e7-bb45-1565f5d54891" name="Changes" comment="remove cv2">
|
8 |
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
9 |
+
<change beforePath="$PROJECT_DIR$/Dockerfile" beforeDir="false" afterPath="$PROJECT_DIR$/Dockerfile" afterDir="false" />
|
10 |
</list>
|
11 |
<option name="SHOW_DIALOG" value="false" />
|
12 |
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
|
118 |
<option name="presentableId" value="Default" />
|
119 |
<updated>1702301546100</updated>
|
120 |
<workItem from="1702301554378" duration="4025000" />
|
121 |
+
<workItem from="1702450051021" duration="3093000" />
|
122 |
</task>
|
123 |
<task id="LOCAL-00001" summary="init commit">
|
124 |
<option name="closed" value="true" />
|
|
|
144 |
<option name="project" value="LOCAL" />
|
145 |
<updated>1702452279580</updated>
|
146 |
</task>
|
147 |
+
<task id="LOCAL-00004" summary="remove cv2">
|
148 |
+
<option name="closed" value="true" />
|
149 |
+
<created>1702452468199</created>
|
150 |
+
<option name="number" value="00004" />
|
151 |
+
<option name="presentableId" value="LOCAL-00004" />
|
152 |
+
<option name="project" value="LOCAL" />
|
153 |
+
<updated>1702452468199</updated>
|
154 |
+
</task>
|
155 |
+
<option name="localTasksCounter" value="5" />
|
156 |
<servers />
|
157 |
</component>
|
158 |
<component name="TypeScriptGeneratedFilesManager">
|
Dockerfile
CHANGED
@@ -3,4 +3,5 @@ FROM python:3.11-bookworm
|
|
3 |
WORKDIR /app
|
4 |
COPY . /app
|
5 |
RUN pip install -r requirements.txt
|
|
|
6 |
ENTRYPOINT ["streamlit", "run", "demo.py"]
|
|
|
3 |
WORKDIR /app
|
4 |
COPY . /app
|
5 |
RUN pip install -r requirements.txt
|
6 |
+
RUN mkdir /.cache
|
7 |
ENTRYPOINT ["streamlit", "run", "demo.py"]
|