ium_495716/Dockerfile

12 lines
212 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 14:15:55 +01:00
ENTRYPOINT ["jupyter", "execute", "Data_download.ipynb"]