We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9248f4 commit 254df3bCopy full SHA for 254df3b
Dockerfile
@@ -53,20 +53,14 @@ RUN python3.10 -m pip install --upgrade pip
53
# Install Poetry using Python 3.10
54
RUN python3.10 -m pip install poetry
55
56
-# Clone the repository
57
-RUN git clone -b develop https://github.com/VectorInstitute/vector-inference /vec-inf
58
-
59
-# Set the working directory
60
-WORKDIR /vec-inf
61
62
# Don't create venv
63
RUN poetry config virtualenvs.create false
64
65
# Update Poetry lock file if necessary
66
RUN poetry lock
67
68
# Install vec-inf
69
-RUN python3.10 -m pip install .[dev]
+RUN python3.10 -m pip install vec-inf[dev]
70
71
# Install Flash Attention 2 backend
72
RUN python3.10 -m pip install flash-attn --no-build-isolation
0 commit comments