ium_444452/Dockerfile

12 lines
246 B
Docker
Raw Normal View History

2022-04-03 23:22:54 +02:00
FROM ubuntu:latest
RUN apt update && apt install -y python3 \
2022-04-10 20:29:59 +02:00
python3-pip
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 22:42:16 +02:00
RUN mkdir /.kaggle && chmod o+w /.kaggle
2022-05-15 22:54:36 +02:00
RUN mkdir /code/mlruns && chmod o+w /code/mlruns