Skip to content
Open
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
17 changes: 17 additions & 0 deletions dockerfiles/grading-clustering/1.0/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 \
pandas \
scikit-learn \
scipy

RUN ln -s /usr/bin/python3 /usr/bin/python
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": "1.0"
}
Loading