ium_444452/Docker/Dockerfile
2022-05-02 16:34:37 +02:00

15 lines
214 B
Docker

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