ium_444452/Dockerfile

11 lines
197 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-04-10 21:03:57 +02:00
RUN mkdir /.kaggle && chmod o+w /.kaggle