Spaces:
Runtime error
Runtime error
kristada673
commited on
Commit
•
ddf0a41
1
Parent(s):
bb8a77d
Update Dockerfile
Browse files- Dockerfile +1 -7
Dockerfile
CHANGED
@@ -1,10 +1,4 @@
|
|
1 |
FROM python:3.10
|
2 |
-
RUN
|
3 |
-
&& tar -xzf ta-lib-0.4.0-src.tar.gz \
|
4 |
-
&& cd ta-lib/ \
|
5 |
-
&& ./configure --prefix=/usr \
|
6 |
-
&& make \
|
7 |
-
&& make install \
|
8 |
-
&& pip install ta-lib
|
9 |
RUN pip install gradio
|
10 |
CMD ["python", "-u", "app.py"]
|
|
|
1 |
FROM python:3.10
|
2 |
+
RUN chmod +x install_talib.sh
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
RUN pip install gradio
|
4 |
CMD ["python", "-u", "app.py"]
|