dockerfile
This commit is contained in:
parent
da0ee215cb
commit
e78de9e0e3
16
dockerfile
16
dockerfile
@ -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
|
Loading…
Reference in New Issue
Block a user