ium_444421/Dockerfile

18 lines
321 B
Docker
Raw Normal View History

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-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 ./
COPY ./classification_net.py ./