17 lines
385 B
Docker
17 lines
385 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y figlet
|
|
RUN apt-get update
|
|
RUN apt install python3-pip -y
|
|
RUN pip install --user pandas
|
|
RUN pip install --user jupyter
|
|
RUN pip install --user kaggle
|
|
RUN pip install --user seaborn
|
|
RUN pip install --user tensorflow
|
|
RUN pip install --user sacred
|
|
RUN pip install --user numpy
|
|
RUN apt install git -y
|
|
CMD python3 predict.py
|
|
|
|
|
|
WORKDIR /app |