From 9b1f8c68cae1084cf8e0b9cb0d6cf7a839e7fedb Mon Sep 17 00:00:00 2001 From: Szymon Bartanowicz Date: Wed, 3 Apr 2024 00:24:18 +0200 Subject: [PATCH] docker --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f16a550 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:latest + +RUN apt-get update && apt-get install -y python3-pip unzip coreutils + +RUN pip install --user kaggle pandas + +WORKDIR /app + +COPY . /app \ No newline at end of file