19 lines
466 B
Docker
19 lines
466 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
RUN apt install -y unzip
|
|
RUN pip install --user kaggle pandas seaborn sklearn
|
|
|
|
RUN mkdir ~/.kaggle/
|
|
RUN echo '{"username":"ikami1","key":"c70ff184133bfabb351608b128e76cd2"}' > ~/.kaggle/kaggle.json
|
|
|
|
WORKDIR /ium
|
|
|
|
#COPY ./download_dataset.sh ./
|
|
COPY ./Steel_industry_data.csv ./
|
|
COPY ./process_dataset.py ./
|
|
#COPY ./stats.sh ./
|
|
|
|
#CMD ./download_dataset.sh
|
|
CMD python3 process_dataset.py
|
|
#CMD ./stats.sh |