diff --git a/Dockerfile b/Dockerfile index 52c34eb..8ac77b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,12 +6,8 @@ RUN pacman -S python-pip --noconfirm RUN pacman -S bc --noconfirm RUN pacman -S unzip --noconfirm -RUN pip install kaggle -RUN pip install pandas -RUN pip install torch -RUN pip install numpy -RUN pip install matplotlib -RUN pip install seaborn +COPY ./requirements.txt ./ +RUN pip install -r ./requirements.txt ENV PATH="/root/.local/bin:/.local/bin:${PATH}" diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..3e57867 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +kaggle +pandas +torch +numpy +matplotlib +seaborn \ No newline at end of file