ium_444452/Dockerfile

13 lines
246 B
Docker

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