ium_444452/Dockerfile

13 lines
246 B
Docker
Raw Permalink Normal View History

2022-04-03 23:22:54 +02:00
FROM ubuntu:latest
RUN apt update && apt install -y python3 \
2022-05-15 23:07:36 +02:00
python3-pip \
git
2022-04-03 23:22:54 +02:00
2022-04-10 20:29:59 +02:00
WORKDIR /code
2022-04-03 23:22:54 +02:00
2022-04-10 20:29:59 +02:00
COPY . /code/
2022-04-03 23:22:54 +02:00
2022-04-10 20:29:59 +02:00
RUN python3 -m pip install -r requirements.txt
2022-05-15 23:23:56 +02:00
RUN mkdir /.kaggle && chmod o+w /.kaggle
RUN mkdir /mlruns && chmod o+w /mlruns