ium_434704/Dockerfile

11 lines
166 B
Docker
Raw Normal View History

2021-04-10 22:05:24 +02:00
FROM ubuntu:focal
2021-04-10 20:09:58 +02:00
2021-04-10 22:02:24 +02:00
RUN apt update && apt install -y python3 python3-pip
2021-04-10 20:09:58 +02:00
COPY . .
2021-04-10 22:02:24 +02:00
RUN pip3 install -r requirements.txt
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle
2021-04-10 20:09:58 +02:00