From ac5e3d3809c0549251d16807d466c6583e5c5fb6 Mon Sep 17 00:00:00 2001 From: Aakash Date: Sat, 1 Jun 2024 22:27:03 +0530 Subject: [PATCH] all done --- .github/workflows/main.yaml | 0 Dockerfile | 5 +++++ requirements.txt | 6 +++++- 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/main.yaml create mode 100644 Dockerfile diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 0000000..e69de29 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f1f3c1f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM python:3.12.1 +COPY . /app +WORKDIR /app +RUN pip install -r requirements.txt +CMD python app.py \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index c807a0f..3560120 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,8 @@ streamlit pickle scikit-learn streamlit_extras -streamlit_option_menu \ No newline at end of file +streamlit_option_menu +pandas +numpy +matplotlib +seaborn