Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
@@ -2,6 +2,10 @@ FROM ghcr.io/tilmto/hymba:v1
|
|
2 |
ARG DEBIAN_FRONTEND=noninteractive
|
3 |
ENV PYTHONUNBUFFERED=1
|
4 |
WORKDIR /code
|
|
|
|
|
|
|
|
|
5 |
RUN useradd -m -u 1000 user
|
6 |
RUN echo "user:x:/home/user:/bin/bash" >> /etc/passwd
|
7 |
RUN echo "user:x:1000:" >> /etc/group
|
@@ -20,7 +24,7 @@ RUN pip3 install --no-cache-dir --progress-bar off --upgrade gradio
|
|
20 |
RUN pip3 install --no-cache-dir --progress-bar off --upgrade triton
|
21 |
RUN pip3 install --no-cache-dir --progress-bar off --upgrade spaces
|
22 |
|
23 |
-
|
24 |
|
25 |
RUN git lfs install
|
26 |
RUN git clone https://huggingface.co/nvidia/Hymba-1.5B-Instruct
|
|
|
2 |
ARG DEBIAN_FRONTEND=noninteractive
|
3 |
ENV PYTHONUNBUFFERED=1
|
4 |
WORKDIR /code
|
5 |
+
|
6 |
+
RUN apt-get update
|
7 |
+
RUN apt-get install -y git-lfs
|
8 |
+
|
9 |
RUN useradd -m -u 1000 user
|
10 |
RUN echo "user:x:/home/user:/bin/bash" >> /etc/passwd
|
11 |
RUN echo "user:x:1000:" >> /etc/group
|
|
|
24 |
RUN pip3 install --no-cache-dir --progress-bar off --upgrade triton
|
25 |
RUN pip3 install --no-cache-dir --progress-bar off --upgrade spaces
|
26 |
|
27 |
+
|
28 |
|
29 |
RUN git lfs install
|
30 |
RUN git clone https://huggingface.co/nvidia/Hymba-1.5B-Instruct
|