From 86ec6b174a9c10307b3219cc2ba888c280bf012f Mon Sep 17 00:00:00 2001 From: Jakub Henyk Date: Sat, 6 May 2023 19:47:12 +0200 Subject: [PATCH] updated dockerfile --- Dockerfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aa1d9e9..4d5e992 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,11 +10,18 @@ WORKDIR /app RUN apt-get install -y python3 RUN apt-get install -y python3-pip RUN python3 -m pip install pandas +RUN python3 -m pip install numpy +RUN python3 -m pip install torch COPY ./zadanie1.py ./ COPY ./Customers.csv ./ +COPY ./train.py ./ +COPY ./test.py ./ RUN chmod +r ./Customers.csv RUN chmod +x ./zadanie1.py +RUN chmod +x ./train.py +RUN chmod +x ./test.py -CMD python3 ./zadanie1.py \ No newline at end of file +CMD python3 ./train.py +CMD python3 ./test.py \ No newline at end of file