2022-04-08 10:11:54 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
|
|
RUN pip3 install pandas
|
2022-04-10 11:27:52 +02:00
|
|
|
RUN pip3 install sklearn
|
|
|
|
RUN pip3 install seaborn
|
2022-04-10 20:36:20 +02:00
|
|
|
RUN pip3 install ipython
|
2022-04-24 16:45:19 +02:00
|
|
|
RUN pip3 install torch
|
|
|
|
RUN pip3 install numpy
|
2022-05-29 13:49:17 +02:00
|
|
|
RUN pip3 install dvc
|
2022-05-29 13:56:19 +02:00
|
|
|
RUN pip3 install dvc[ssh] paramiko
|
2022-04-08 10:11:54 +02:00
|
|
|
RUN apt-get install unzip
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
2022-04-24 16:45:19 +02:00
|
|
|
COPY ./body-performance-data.zip ./
|
2022-05-29 13:46:40 +02:00
|
|
|
COPY ./prepare_datasets.py ./
|
|
|
|
COPY ./train.py ./
|
2022-04-24 16:45:19 +02:00
|
|
|
|