Skip to content

Commit 6b289fd

Browse files
author
Nathan Figueroa
committed
Add FLA and dependencies to Dockerfile
1 parent 996bc8d commit 6b289fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
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
54
RUN 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
2727
COPY 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

3232
RUN rm pyproject.toml
3333

0 commit comments

Comments
 (0)