add scared fileobserver
Some checks failed
s440058-training/pipeline/head There was a failure building this commit

This commit is contained in:
piotr6789 2021-05-24 15:20:47 +02:00
parent 6731c7345f
commit ff040678cc
2 changed files with 2 additions and 7 deletions

View File

@ -7,12 +7,14 @@ RUN pip3 install kaggle && pip3 install pandas && pip3 install scikit-learn && p
RUN apt install -y curl
RUN pip3 install --user wget
RUN pip3 install torch torchvision torchaudio
RUN pip3 install sacred && pip3 install GitPython && pip3 install pymongo
WORKDIR /app
COPY ./init.py ./
COPY ./stats.py ./
COPY ./pytorch-example.py ./
COPY ./scared-example-file.py ./
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle

View File

@ -1,7 +0,0 @@
FROM ubuntu:latest
RUN apt-get update && apt-get install -y python3-pip && pip3 install setuptools && pip3 install numpy && pip3 install pandas && pip3 install wget && pip3 install scikit-learn && pip3 install matplotlib && rm -rf /var/lib/apt/lists/*
RUN pip3 install torch torchvision torchaudio
RUN pip3 install sacred && pip3 install GitPython && pip3 install pymongo
WORKDIR /app
COPY ./../pytorch-example.py ./
COPY ./../scared-example-file.py ./