ium_s449288/lab8/Dockerfile

21 lines
421 B
Docker
Raw Normal View History

2022-04-02 12:21:44 +02:00
FROM ubuntu:latest
2022-04-02 12:56:22 +02:00
WORKDIR /ium
2022-04-02 12:21:44 +02:00
2022-04-02 16:41:37 +02:00
RUN apt update && apt install -y python3-pip
2022-04-02 12:21:44 +02:00
2022-04-02 15:52:30 +02:00
RUN pip3 install pandas
RUN pip3 install numpy
RUN pip3 install sklearn
2022-04-08 18:16:40 +02:00
RUN pip3 install tensorflow
RUN pip3 install matplotlib
RUN pip3 install keras
2022-05-12 21:55:50 +02:00
RUN pip3 install sacred
RUN pip3 install pymongo
RUN pip3 install GitPython
RUN pip3 install mlflow
2022-04-02 12:21:44 +02:00
2022-04-02 16:41:37 +02:00
COPY ./lego_sets.csv ./
2022-04-08 18:16:40 +02:00
COPY ./process_dataset.py ./
2022-05-12 21:55:50 +02:00
COPY ./simple_regression_lab8.py ./