ium_444452/Dockerfile
2022-04-10 20:29:59 +02:00

11 lines
207 B
Docker

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