ium_440058/Dockerfile
piotr6789 6731c7345f
Some checks failed
s440058-training/pipeline/head There was a failure building this commit
add scared fileobserver
2021-05-24 15:19:11 +02:00

18 lines
458 B
Docker

FROM ubuntu:latest
RUN apt update && apt install -y python3 && apt install -y nano
RUN apt update && apt install python3-pip -y
RUN pip3 install kaggle && pip3 install pandas && pip3 install scikit-learn && pip3 install matplotlib
RUN apt install -y curl
RUN pip3 install --user wget
RUN pip3 install torch torchvision torchaudio
WORKDIR /app
COPY ./init.py ./
COPY ./stats.py ./
COPY ./pytorch-example.py ./
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle