24 lines
584 B
Docker
24 lines
584 B
Docker
FROM ubuntu: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 ./Participants_Data_HPP ./Participants_Data_HPP
|
|
COPY ./startscript1.sh ./
|
|
COPY ./src/task1python.py ./src/task1python.py
|
|
COPY ./src/pythonTest.py ./src/pythonTest.py
|
|
|
|
RUN chmod +x ./startscript1.sh
|
|
RUN chmod +x ./src/task1python.py
|
|
RUN chmod +x ./src/pythonTest.py
|
|
|
|
CMD python3 ./src/task1python.py |