dockerfile

This commit is contained in:
patrycjalazna 2021-04-11 13:04:09 +02:00
parent da0ee215cb
commit e78de9e0e3

View File

@ -1,11 +1,15 @@
FROM ubuntu:latest
FROM ubuntu:focal
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
RUN apt update
RUN apt install -y python3 python3-pip
RUN pip3 install kaggle
RUN apt install -y unzip
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle
WORKDIR /app
COPY ./avocado-preprocessing.sh ./
RUN chmod +x avocado-preprocessing.sh
CMD ./avocado-preprocessing.sh