ium_444452/Dockerfile
AdamOsiowy123 c1daf70504
Some checks failed
s444452-training/pipeline/head There was a failure building this commit
mlflow fix2
2022-05-15 22:54:36 +02:00

12 lines
246 B
Docker

FROM ubuntu:latest
RUN apt update && apt install -y python3 \
python3-pip
WORKDIR /code
COPY . /code/
RUN python3 -m pip install -r requirements.txt
RUN mkdir /.kaggle && chmod o+w /.kaggle
RUN mkdir /code/mlruns && chmod o+w /code/mlruns