Marcin Kostrzewski
c8c7b24fb1
Some checks failed
s444409-training/pipeline/head There was a failure building this commit
16 lines
209 B
Docker
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
|