Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Use an official CUDA runtime with Ubuntu as a parent image
FROM nvidia/cuda:12.8.1-runtime-ubuntu24.04
FROM nvidia/cuda:12.8.1-devel-ubuntu24.04

# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
curl \
ca-certificates \
python3.12 \
python3-pip \
python3.12-venv \
python3.12-dev \
&& rm -rf /var/lib/apt/lists/*

# Create a virtual environment
Expand All @@ -27,7 +27,7 @@ WORKDIR /app
COPY pyproject.toml .

# Install packages specified in pyproject.toml cu12, extras
RUN pip install --no-cache-dir .[cu12,extras]
RUN pip install --no-cache-dir .[cu12,extras] flash-linear-attention

RUN rm pyproject.toml

Expand Down