16 lines
414 B
Docker
16 lines
414 B
Docker
FROM ubuntu
|
|
|
|
RUN apt-get update && apt-get install -y python3 python3-pip unzip
|
|
|
|
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
|
|
|
|
WORKDIR /app |