35 lines
905 B
Docker
35 lines
905 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 ln -s ~/.local/bin/kaggle /usr/bin/kaggle
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN sed 's/\r$//' ./startscript1.sh
|
|
RUN sed 's/\r$//' ./runPythonScripts.sh
|
|
RUN chmod -R 777 ../app
|
|
RUN ls -la >> permissions.txt
|
|
# COPY ./Participants_Data_HPP ./Participants_Data_HPP
|
|
# COPY ./startscript1.sh ./
|
|
# COPY ./src/task1python.py ./src/task1python.py
|
|
# COPY ./src/pythonTest.py ./src/pythonTest.py
|
|
# COPY ./src/trainScript.py ./src/trainScript.py
|
|
# COPY ./runPythonScript.sh ./runPythonScript.sh
|
|
|
|
# RUN chmod +x ./startscript1.sh
|
|
# RUN chmod +x ./src/task1python.py
|
|
# RUN chmod +x /app/runPythonScript.sh
|
|
|
|
# FROM tensorflow/tensorflow:latest
|
|
|
|
# RUN ./startscript1.sh |