ium_495716/Dockerfile
2024-03-29 16:07:42 +01:00

15 lines
231 B
Docker

FROM ubuntu:latest
RUN apt update && apt install -y \
python3-pip
WORKDIR /app
COPY requirements.txt ./
COPY kaggle.json ./.kaggle/kaggle.json
RUN pip install --no-cache-dir -r requirements.txt
COPY Data_download.ipynb ./