File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11# Use an official CUDA runtime with Ubuntu as a parent image
2- FROM nvidia/cuda:12.8.1-runtime -ubuntu24.04
2+ FROM nvidia/cuda:12.8.1-devel -ubuntu24.04
33
4- # Install system dependencies
54RUN apt-get update && apt-get install -y --no-install-recommends \
65 build-essential \
76 curl \
87 ca-certificates \
98 python3.12 \
109 python3-pip \
1110 python3.12-venv \
11+ python3.12-dev \
1212 && rm -rf /var/lib/apt/lists/*
1313
1414# Create a virtual environment
@@ -27,7 +27,7 @@ WORKDIR /app
2727COPY pyproject.toml .
2828
2929# Install packages specified in pyproject.toml cu12, extras
30- RUN pip install --no-cache-dir .[cu12,extras]
30+ RUN pip install --no-cache-dir .[cu12,extras] flash-linear-attention
3131
3232RUN rm pyproject.toml
3333
You can’t perform that action at this time.
0 commit comments