ium_478855/Dockerfile
ulaniuk 347036bfda t
2022-05-04 19:22:21 +02:00

30 lines
582 B
Docker

FROM ubuntu:latest
WORKDIR /
ARG KAGGLE_USERNAME
ARG KAGGLE_KEY
ENV KAGGLE_USERNAME=${KAGGLE_USERNAME}
ENV KAGGLE_KEY=${KAGGLE_KEY}
RUN apt update
RUN apt-get updat
RUN apt install python3-pip -y
RUN pip install --user kaggle
RUN pip install --user pandas
RUN pip install --user sklearn
RUN pip install --user torch
RUN pip install --user tqdm
RUN pip install --user seaborn
COPY KaggleV2-May-2016.csv ./
COPY create_data.py ./
COPY stats_data.py ./
COPY train_model.py ./
CMD ["python", "train_model.py"]
# CMD ["python", "create_data.py"]
# CMD ["python", "stats_data.py"]