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:54:54 +01:00
|
|
|
COPY --chmod=755 /scripts /scripts
|
2024-03-29 14:28:56 +01:00
|
|
|
|
2024-03-29 14:54:54 +01:00
|
|
|
ENTRYPOINT ["/scripts/entrypoint.sh"]
|