future-xy
commited on
Commit
•
1b1558d
1
Parent(s):
aa83719
add dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use specific python image
|
2 |
+
FROM registry.hf.space/pingandpasquale-moe-llm-gpu-poor-leaderboard:latest
|
3 |
+
|
4 |
+
RUN pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ moe-infinity --no-cache-dir
|
5 |
+
# To fix pydantic version
|
6 |
+
RUN pip install pydantic==2.6.4 --no-cache-dir
|
7 |
+
# To fix selfcheck (selfchatgpt) dataset missing
|
8 |
+
RUN python -m spacy download en
|