From 0edae153788e95eac9abc7bc1caa9bff07f1ed30 Mon Sep 17 00:00:00 2001 From: DarthNyan Date: Fri, 4 Apr 2025 17:41:52 -0400 Subject: [PATCH 1/2] create docker image --- dockerfiles/csci4150/metadata.json | 3 +++ dockerfiles/csci4150/ubuntu22.04/Dockerfile | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 dockerfiles/csci4150/metadata.json create mode 100644 dockerfiles/csci4150/ubuntu22.04/Dockerfile diff --git a/dockerfiles/csci4150/metadata.json b/dockerfiles/csci4150/metadata.json new file mode 100644 index 0000000..1a252b0 --- /dev/null +++ b/dockerfiles/csci4150/metadata.json @@ -0,0 +1,3 @@ +{ + "pushLatest": true +} \ No newline at end of file diff --git a/dockerfiles/csci4150/ubuntu22.04/Dockerfile b/dockerfiles/csci4150/ubuntu22.04/Dockerfile new file mode 100644 index 0000000..f87d78d --- /dev/null +++ b/dockerfiles/csci4150/ubuntu22.04/Dockerfile @@ -0,0 +1,7 @@ +FROM ubuntu:22.04 + +RUN apt-get update + +RUN apt-get install python3.10 pip -y + +RUN pip install torch numpy matplotlib \ No newline at end of file From ec2a0bea445f1b7c313536a032c96d45fb1d6a60 Mon Sep 17 00:00:00 2001 From: DarthNyan Date: Fri, 4 Apr 2025 18:01:47 -0400 Subject: [PATCH 2/2] Add csci 4150 latest tag --- dockerfiles/csci4150/metadata.json | 3 ++- dockerfiles/csci4150/{ubuntu22.04 => s25}/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) rename dockerfiles/csci4150/{ubuntu22.04 => s25}/Dockerfile (56%) diff --git a/dockerfiles/csci4150/metadata.json b/dockerfiles/csci4150/metadata.json index 1a252b0..a197245 100644 --- a/dockerfiles/csci4150/metadata.json +++ b/dockerfiles/csci4150/metadata.json @@ -1,3 +1,4 @@ { - "pushLatest": true + "pushLatest": true, + "latestTag": "s25" } \ No newline at end of file diff --git a/dockerfiles/csci4150/ubuntu22.04/Dockerfile b/dockerfiles/csci4150/s25/Dockerfile similarity index 56% rename from dockerfiles/csci4150/ubuntu22.04/Dockerfile rename to dockerfiles/csci4150/s25/Dockerfile index f87d78d..526c959 100644 --- a/dockerfiles/csci4150/ubuntu22.04/Dockerfile +++ b/dockerfiles/csci4150/s25/Dockerfile @@ -4,4 +4,4 @@ RUN apt-get update RUN apt-get install python3.10 pip -y -RUN pip install torch numpy matplotlib \ No newline at end of file +RUN pip install torch==2.6.0 numpy==2.2.4 matplotlib==3.10.1 \ No newline at end of file