From 0edae153788e95eac9abc7bc1caa9bff07f1ed30 Mon Sep 17 00:00:00 2001 From: DarthNyan Date: Fri, 4 Apr 2025 17:41:52 -0400 Subject: [PATCH] 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