From e69bb06cf62ef6711411152c39b26d25349ef408 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zar=C4=99ba?= Date: Thu, 8 Apr 2021 21:20:22 +0200 Subject: [PATCH] Zaktualizuj 'Dockerfile' --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 11a6cfd..2c9ed46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,10 +7,10 @@ RUN apt-get install -y figlet WORKDIR /app COPY ./requirements.txt ./ -COPY ./script.py ./ +COPY ./script2.py ./ COPY ./kaggle.json /root/.kaggle/ RUN pip3 install --user -r ./requirements.txt -CMD python3 script.py +CMD python3 script2.py