no flag user in dockerfile
Some checks failed
s434695-training/pipeline/head There was a failure building this commit

This commit is contained in:
s434695 2021-05-16 21:37:25 +02:00
parent b1bb478c17
commit ef245b69da
3 changed files with 13 additions and 17 deletions

View File

@ -5,19 +5,19 @@ FROM ubuntu:latest
RUN apt update && apt install -y figlet
RUN apt install -y git
RUN apt install -y python3-pip
RUN pip3 install --user setuptools
RUN pip3 install --user kaggle
RUN pip3 install --user pandas
RUN pip3 install --user numpy
RUN pip3 install --user seaborn
RUN pip3 install --user sklearn
RUN pip3 install --user matplotlib
RUN pip3 install --user tensorflow
RUN pip3 install --user sacred
RUN pip3 install --user wget
RUN pip3 install --user keras
RUN pip3 install --user GitPython
RUN pip3 install --user pymongo
RUN pip3 install setuptools
RUN pip3 install kaggle
RUN pip3 install pandas
RUN pip3 install numpy
RUN pip3 install seaborn
RUN pip3 install sklearn
RUN pip3 install matplotlib
RUN pip3 install tensorflow
RUN pip3 install sacred
RUN pip3 install wget
RUN pip3 install keras
RUN pip3 install GitPython
RUN pip3 install pymongo
WORKDIR /app

View File

@ -12,7 +12,6 @@ from tensorflow.keras.models import Model
from tensorflow.keras.callbacks import EarlyStopping
from tensorflow.keras.models import Sequential
from sacred.observers import FileStorageObserver
from sacred import Experiment
from datetime import datetime
import os

View File

@ -12,9 +12,6 @@ from tensorflow.keras.models import Model
from tensorflow.keras.callbacks import EarlyStopping
from tensorflow.keras.models import Sequential
from sacred.observers import FileStorageObserver
from sacred import Experiment
from datetime import datetime
import os
from sacred.observers import MongoObserver
ex = Experiment("ium_s434695", interactive=False)