ium_495716/Dockerfile

13 lines
191 B
Docker
Raw Normal View History

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 ./
RUN pip install --no-cache-dir -r requirements.txt
2024-03-29 15:31:16 +01:00
COPY Data_download.ipynb ./