no flag user in dockerfile
Some checks failed
s434695-training/pipeline/head There was a failure building this commit
Some checks failed
s434695-training/pipeline/head There was a failure building this commit
This commit is contained in:
parent
b1bb478c17
commit
ef245b69da
26
Dockerfile
26
Dockerfile
@ -5,19 +5,19 @@ FROM ubuntu:latest
|
|||||||
RUN apt update && apt install -y figlet
|
RUN apt update && apt install -y figlet
|
||||||
RUN apt install -y git
|
RUN apt install -y git
|
||||||
RUN apt install -y python3-pip
|
RUN apt install -y python3-pip
|
||||||
RUN pip3 install --user setuptools
|
RUN pip3 install setuptools
|
||||||
RUN pip3 install --user kaggle
|
RUN pip3 install kaggle
|
||||||
RUN pip3 install --user pandas
|
RUN pip3 install pandas
|
||||||
RUN pip3 install --user numpy
|
RUN pip3 install numpy
|
||||||
RUN pip3 install --user seaborn
|
RUN pip3 install seaborn
|
||||||
RUN pip3 install --user sklearn
|
RUN pip3 install sklearn
|
||||||
RUN pip3 install --user matplotlib
|
RUN pip3 install matplotlib
|
||||||
RUN pip3 install --user tensorflow
|
RUN pip3 install tensorflow
|
||||||
RUN pip3 install --user sacred
|
RUN pip3 install sacred
|
||||||
RUN pip3 install --user wget
|
RUN pip3 install wget
|
||||||
RUN pip3 install --user keras
|
RUN pip3 install keras
|
||||||
RUN pip3 install --user GitPython
|
RUN pip3 install GitPython
|
||||||
RUN pip3 install --user pymongo
|
RUN pip3 install pymongo
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
@ -12,7 +12,6 @@ from tensorflow.keras.models import Model
|
|||||||
from tensorflow.keras.callbacks import EarlyStopping
|
from tensorflow.keras.callbacks import EarlyStopping
|
||||||
from tensorflow.keras.models import Sequential
|
from tensorflow.keras.models import Sequential
|
||||||
from sacred.observers import FileStorageObserver
|
from sacred.observers import FileStorageObserver
|
||||||
from sacred import Experiment
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
@ -12,9 +12,6 @@ from tensorflow.keras.models import Model
|
|||||||
from tensorflow.keras.callbacks import EarlyStopping
|
from tensorflow.keras.callbacks import EarlyStopping
|
||||||
from tensorflow.keras.models import Sequential
|
from tensorflow.keras.models import Sequential
|
||||||
from sacred.observers import FileStorageObserver
|
from sacred.observers import FileStorageObserver
|
||||||
from sacred import Experiment
|
|
||||||
from datetime import datetime
|
|
||||||
import os
|
|
||||||
from sacred.observers import MongoObserver
|
from sacred.observers import MongoObserver
|
||||||
|
|
||||||
ex = Experiment("ium_s434695", interactive=False)
|
ex = Experiment("ium_s434695", interactive=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user