Spaces:
Configuration error
Configuration error
mariaoliv
commited on
Commit
•
57ddb6a
1
Parent(s):
144dc50
docker stuff..
Browse files- Dockerfile +8 -0
- app.py +3 -0
Dockerfile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.10
|
2 |
+
|
3 |
+
ADD app.py .
|
4 |
+
RUN pip install pandas
|
5 |
+
RUN pip install numpy
|
6 |
+
RUN pip install tensorflow
|
7 |
+
RUN pip install transformers
|
8 |
+
CMD ["python", "./app.py"]
|
app.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
import numpy as np
|
2 |
+
from transformers import pipeline
|
3 |
+
print("HELLO WORLD")
|