ium_s449288/lab5/Dockerfile

17 lines
316 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-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 ./
COPY ./simple_regression.py ./