Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -3,12 +3,14 @@ FROM nvidia/cuda:12.1.0-runtime-ubuntu20.04
|
|
3 |
# System packages (including curl and build tools)
|
4 |
RUN apt-get update && apt-get install -y \
|
5 |
git \
|
|
|
6 |
python3 \
|
7 |
python3-pip \
|
8 |
curl \
|
9 |
build-essential \
|
10 |
&& rm -rf /var/lib/apt/lists/*
|
11 |
|
|
|
12 |
# Install Rust (needed for tokenizers)
|
13 |
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
14 |
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
3 |
# System packages (including curl and build tools)
|
4 |
RUN apt-get update && apt-get install -y \
|
5 |
git \
|
6 |
+
git-lfs \
|
7 |
python3 \
|
8 |
python3-pip \
|
9 |
curl \
|
10 |
build-essential \
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
+
|
14 |
# Install Rust (needed for tokenizers)
|
15 |
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
16 |
ENV PATH="/root/.cargo/bin:${PATH}"
|