Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
-
import
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
-
iface.launch()
|
|
|
1 |
+
import docker.io
|
2 |
+
RUN --mount=target=pre-requirements.txt,source=pre-requirements.txt \
|
3 |
+
pip install --no-cache-dir -r pre-requirements.txt
|
4 |
|
5 |
+
RUN --mount=target=requirements.txt,source=requirements.txt \
|
6 |
+
pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|