ium_444409/Dockerfile

18 lines
238 B
Docker
Raw Normal View History

2022-04-01 22:25:05 +02:00
FROM python:3.9
WORKDIR /app
ADD ./requirements.txt .
RUN pip install -r requirements.txt
2022-05-09 17:04:58 +02:00
ADD ./download_dataset.sh .
2022-04-01 22:25:05 +02:00
ARG KAGGLE_USERNAME
ARG KAGGLE_KEY
2022-04-02 17:24:29 +02:00
RUN chmod a+x *.sh
2022-04-01 22:25:05 +02:00
RUN ./download_dataset.sh
2022-05-09 17:04:58 +02:00
ADD . .
2022-04-24 22:27:58 +02:00
CMD python train_model.py