15 lines
286 B
Plaintext
15 lines
286 B
Plaintext
FROM ubuntu:focal
|
|
|
|
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 |