2022-04-03 14:40:45 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
WORKDIR /ium
|
|
|
|
RUN apt update && apt install -y python3-pip
|
2022-04-10 17:17:02 +02:00
|
|
|
RUN apt install unzip
|
2022-04-10 17:12:11 +02:00
|
|
|
RUN pip3 install kaggle
|
2022-04-10 17:14:13 +02:00
|
|
|
RUN mkdir /.kaggle && chmod o+w /.kaggle
|
2022-04-03 14:40:45 +02:00
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install numpy
|
|
|
|
RUN pip3 install sklearn
|
2022-04-24 12:25:00 +02:00
|
|
|
RUN pip3 install tensorflow
|
2022-04-03 14:43:23 +02:00
|
|
|
COPY ./steam-200k.csv ./
|
2022-04-24 12:25:00 +02:00
|
|
|
COPY ./biblioteki_dl.py ./
|