ium_444409/Dockerfile
Marcin Kostrzewski c8c7b24fb1
Some checks failed
s444409-training/pipeline/head There was a failure building this commit
Dockerfile runs training
2022-04-24 22:27:58 +02:00

16 lines
209 B
Docker

FROM python:3.9
WORKDIR /app
ADD ./requirements.txt .
RUN pip install -r requirements.txt
ADD . .
ARG KAGGLE_USERNAME
ARG KAGGLE_KEY
RUN chmod a+x *.sh
RUN ./download_dataset.sh
CMD python train_model.py