From 9eb59b3cee67d753b252f2a5d76923b6209c5aca Mon Sep 17 00:00:00 2001 From: Agata <=> Date: Sun, 24 Apr 2022 16:45:19 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e351a1..eada525 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,17 @@ FROM ubuntu:latest RUN apt update && apt install -y python3-pip -#RUN pip3 install kaggle RUN pip3 install pandas RUN pip3 install sklearn RUN pip3 install seaborn RUN pip3 install ipython +RUN pip3 install torch +RUN pip3 install numpy RUN apt-get install unzip WORKDIR /app -COPY ./travel-insurance-prediction-data.zip ./ -COPY ./preparation.py ./ +COPY ./body-performance-data.zip ./ +COPY ./classification_net.py ./ +