Skip to content
Merged
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
4 changes: 2 additions & 2 deletions custom-nb-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# limitations under the License.

FROM quay.io/opendatahub/notebooks:jupyter-minimal-ubi8-python-3.8-4c8f26e

# Install: torch (v1.12), ray (v2.1.0) and others

COPY requirements.txt requirements.txt
Expand All @@ -23,7 +22,8 @@ RUN pip install -r requirements.txt
RUN pip uninstall pickle5 -y

# Install codeflare-sdk and other libraries
RUN pip install codeflare-sdk==0.4.5 \
ARG SDK_VERSION=0.*
RUN pip install codeflare-sdk==${SDK_VERSION} \
datasets==2.6.1 \
transformers==4.23.1 \
evaluate==0.3.0
Expand Down