We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4d84c1 commit ac02248Copy full SHA for ac02248
custom-nb-image/Dockerfile
@@ -13,7 +13,6 @@
13
# limitations under the License.
14
15
FROM quay.io/opendatahub/notebooks:jupyter-minimal-ubi8-python-3.8-4c8f26e
16
-
17
# Install: torch (v1.12), ray (v2.1.0) and others
18
19
COPY requirements.txt requirements.txt
@@ -23,7 +22,8 @@ RUN pip install -r requirements.txt
23
22
RUN pip uninstall pickle5 -y
24
25
# Install codeflare-sdk and other libraries
26
-RUN pip install codeflare-sdk==0.4.5 \
+ARG SDK_VERSION=0.*
+RUN pip install codeflare-sdk==${SDK_VERSION} \
27
datasets==2.6.1 \
28
transformers==4.23.1 \
29
evaluate==0.3.0
0 commit comments