2024-03-29 15:31:16 +01:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt update && apt install -y \
|
|
|
|
python3-pip
|
2024-03-29 10:47:21 +01:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY requirements.txt ./
|
|
|
|
|
2024-03-29 16:12:20 +01:00
|
|
|
COPY kaggle.json /.kaggle/kaggle.json
|
2024-03-29 16:07:42 +01:00
|
|
|
|
2024-03-29 10:47:21 +01:00
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
2024-03-29 15:31:16 +01:00
|
|
|
COPY Data_download.ipynb ./
|