modified lab4 dockerfile for lab5 task

This commit is contained in:
Mateusz Kuc 2023-06-30 19:18:35 +02:00
parent b1d7953dfa
commit 96f2770bc8
1 changed files with 23 additions and 0 deletions

23
lab4.dockerfile Normal file
View File

@ -0,0 +1,23 @@
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y python3 python3-pip unzip
RUN pip install pandas
RUN pip install scikit-learn
RUN pip install kaggle
RUN pip install keras
RUN pip install tensorflow
RUN apt-get install -y git
RUN pip install sacred
RUN pip install pymongo
ARG DEBIAN_FRONTEND=noninteractive
ADD get-data.sh /get-data.sh
ADD prepare_dataset.py /prepare_dataset.py
ADD wines_train.py /wines_train.py
ADD predict.py /predict.py
RUN mkdir /.kaggle
RUN touch /.kaggle/kaggle.json
RUN chmod 777 /.kaggle/kaggle.json