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