From 442441ddd4ed4e6e490a005aa00ca0096d2934a5 Mon Sep 17 00:00:00 2001 From: Rajiv Mayani Date: Mon, 17 Jun 2024 13:16:00 -0700 Subject: [PATCH] Add Python requirements file and Dockerfile --- Dockerfile | 4 ++++ requirements.txt | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 Dockerfile create mode 100644 requirements.txt diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..679400f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM --platform=linux/amd64 python:3.6 + +RUN apt-get update -y && apt-get install -y wget curl libcurl4 openssh-client \ + && pip3 install numpy matplotlib diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..88c288b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +cycler==0.11.0 +kiwisolver==1.3.1 +matplotlib==3.3.4 +numpy==1.19.5 +Pillow==8.4.0 +pyparsing==3.1.2 +python-dateutil==2.9.0.post0 +six==1.16.0