26 lines
459 B
Docker
26 lines
459 B
Docker
FROM ubuntu:latest
|
|
|
|
FROM tensorflow/tensorflow:latest
|
|
|
|
RUN apt update && apt install -y
|
|
RUN apt-get install -y python3
|
|
RUN apt-get install -y unzip
|
|
RUN apt-get install -y python3-pip
|
|
|
|
# RUN python3 -m pip install kaggle
|
|
RUN python3 -m pip install pandas
|
|
RUN pip3 install matplotlib
|
|
# RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN chmod o+wrx ./startscript1.sh
|
|
|
|
RUN chmod o+wrx ./startscript2.sh
|
|
|
|
RUN ./startscript1.sh
|
|
|
|
RUN ls -la
|