From 54d0355326e4246ed3c6d83089608c415a75e9a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zar=C4=99ba?= Date: Thu, 8 Apr 2021 20:58:08 +0200 Subject: [PATCH] Dodanie Dockerfile LAB4 --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..11a6cfd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM ubuntu:latest + +RUN apt-get update +RUN apt-get install -y python3-pip +RUN apt-get install -y figlet + +WORKDIR /app + +COPY ./requirements.txt ./ +COPY ./script.py ./ +COPY ./kaggle.json /root/.kaggle/ + +RUN pip3 install --user -r ./requirements.txt + +CMD python3 script.py +