Skip to content
Merged
Show file tree
Hide file tree
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: 4 additions & 0 deletions dockerfiles/grading-clustering/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"pushLatest": true,
"latestTag": "v26.08.00"
}
17 changes: 17 additions & 0 deletions dockerfiles/grading-clustering/v26.08.00/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND=noninteractive

# Install Python and pip
RUN apt-get update && \
apt-get install -y python3 python3-pip && \
rm -rf /var/lib/apt/lists/*

# Install common data science and clustering libraries, more such can be added as per needs later on
RUN pip3 install --no-cache-dir \
numpy==2.2.6 \
pandas==2.3.3 \
scikit-learn==1.7.2 \
scipy==1.15.3

RUN ln -s /usr/bin/python3 /usr/bin/python
Loading