ium_495716/Dockerfile

12 lines
195 B
Docker
Raw Normal View History

2024-03-29 10:47:21 +01:00
FROM jupyter/tensorflow-notebook
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY Data_download.ipynb ./
2024-03-29 15:12:38 +01:00
CMD jupyter execute Data_download.ipynb