marks
commited on
Commit
·
41b30a0
1
Parent(s):
1a61dc5
Fixed env
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
-
FROM nvidia/cuda:12.
|
2 |
-
RUN
|
|
|
3 |
RUN bash setup.sh
|
4 |
CMD [ "python", "chat.py" ]
|
|
|
1 |
+
FROM nvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04
|
2 |
+
RUN apt-get update && apt-get install -y python3 python3-pip wget
|
3 |
+
RUN wget --header="Authorization: Bearer ${HF_TOKEN}" https://huggingface.co/nvidia/Hymba-1.5B-Base/resolve/main/setup.sh
|
4 |
RUN bash setup.sh
|
5 |
CMD [ "python", "chat.py" ]
|