Spaces:
Sleeping
Sleeping
Placing other deps in requirements.txt
Browse files- Dockerfile +2 -4
- requirements.txt +3 -0
Dockerfile
CHANGED
|
@@ -1,10 +1,8 @@
|
|
| 1 |
FROM rsamf/graphbook:0.10.0-space
|
| 2 |
|
| 3 |
RUN apt update -y && apt install -y pip
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
transformers \
|
| 7 |
-
datasets
|
| 8 |
|
| 9 |
COPY config.yaml .
|
| 10 |
COPY workflow workflow
|
|
|
|
| 1 |
FROM rsamf/graphbook:0.10.0-space
|
| 2 |
|
| 3 |
RUN apt update -y && apt install -y pip
|
| 4 |
+
COPY requirements.txt .
|
| 5 |
+
RUN python -m pip install -r requirements.txt
|
|
|
|
|
|
|
| 6 |
|
| 7 |
COPY config.yaml .
|
| 8 |
COPY workflow workflow
|
requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
graphbook_huggingface==0.0.5
|
| 2 |
+
transformers==4.46.1
|
| 3 |
+
datasets==2.21.0
|