ium_487197/Dockerfile

36 lines
757 B
Docker
Raw Normal View History

2023-04-04 12:11:02 +02:00
FROM ubuntu:latest
RUN apt update && apt install -y figlet
2023-05-11 19:57:26 +02:00
RUN apt install unzip -y
2023-04-04 12:11:02 +02:00
RUN apt install python3-pip -y
RUN pip3 install kaggle
RUN pip3 install pandas
RUN pip3 install unzip
RUN pip3 install scikit-learn
RUN pip3 install seaborn
2023-05-11 18:13:10 +02:00
RUN pip3 install numpy
RUN pip3 install keras
RUN pip3 install tensorflow
2023-05-11 20:13:03 +02:00
RUN pip3 install argparse
2023-05-12 01:16:44 +02:00
RUN pip3 install matplotlib
2023-05-12 03:19:08 +02:00
RUN pip3 install sacred
RUN pip3 install pymongo
2023-05-12 12:54:55 +02:00
RUN pip3 install dvc
2023-05-12 15:17:15 +02:00
RUN pip3 install mlflow
2023-05-11 18:13:10 +02:00
2023-04-04 12:11:02 +02:00
WORKDIR /app
COPY ./download_dataset.sh ./
COPY ./stats.sh ./
COPY ./data.py ./
2023-05-11 18:13:10 +02:00
COPY ./ium_train.py ./
COPY ./ium_predict.py ./
2023-05-12 03:19:08 +02:00
COPY ./ium_sacred.py ./
2023-05-11 18:13:10 +02:00
COPY ./baltimore_dev.csv ./
COPY ./baltimore_test.csv ./
COPY ./baltimore_train.csv ./
COPY ./BPD_Part_1_Victim_Based_Crime_Data.csv ./
2023-04-04 12:11:02 +02:00