Skip to content

Added build args for codeflare-sdk in notebook image build #167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 21, 2023
Merged
Changes from 3 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.4 \
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