2023-04-04 19:46:06 +02:00
|
|
|
FROM ubuntu
|
|
|
|
|
2023-04-04 19:52:46 +02:00
|
|
|
RUN apt-get update && apt-get install -y python3 python3-pip unzip
|
2023-04-04 19:46:06 +02:00
|
|
|
|
2023-05-07 21:10:11 +02:00
|
|
|
RUN python3 -m pip install kaggle numpy pandas torchvision torch
|
|
|
|
|
|
|
|
COPY ium_DL.py
|
|
|
|
COPY ./olympics-124-years-datasettill-2020/Athletes_winter_games.csv
|
|
|
|
|
|
|
|
RUN chmod +r ./ium_DL.py
|
|
|
|
RUN chmod +r ./Athletes_winter_games.csv
|
|
|
|
RUN chmod +r ./olympics-124-years-datasettill-2020/Athletes_winter_games.csv
|
|
|
|
|
|
|
|
RUN python3 ./ium_DL.py
|
2023-04-04 19:46:06 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|