From ac2c9ef78c26aceab78fe4fedc666dbb9c6c70d4 Mon Sep 17 00:00:00 2001 From: patrycjalazna Date: Sat, 10 Apr 2021 16:25:14 +0200 Subject: [PATCH] dockerfile added --- dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 dockerfile diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..6b66c68 --- /dev/null +++ b/dockerfile @@ -0,0 +1,11 @@ +FROM ubuntu:latest + +RUN apt update && apt install -y python3 +RUN apt install -y python3-pip +RUN pip3 install --user kaggle && pip3 install --user pandas && pip3 install scikit-learn && pip3 install matplotlib + +WORKDIR /app + +COPY ./avocado-preprocessing.sh ./ + +CMD ./avocado-preprocessing.sh \ No newline at end of file