python dependencies moved to requirement file

This commit is contained in:
Filip Izydorczyk 2021-05-26 18:44:05 +02:00
parent 8448f51272
commit 230db36e4a
2 changed files with 8 additions and 6 deletions

View File

@ -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}"

6
requirements.txt Normal file
View File

@ -0,0 +1,6 @@
kaggle
pandas
torch
numpy
matplotlib
seaborn