Create runtime.yaml
Browse files- runtime.yaml +7 -0
runtime.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
image: python:3.9
|
2 |
+
install:
|
3 |
+
- pip install -r requirements.txt
|
4 |
+
environment:
|
5 |
+
- TRANSFORMERS_CACHE=/tmp/cache
|
6 |
+
entrypoint:
|
7 |
+
- python main.py
|