diff --git a/Dockerfile b/Dockerfile index b3417bd..925eb54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,6 @@ RUN pip install --no-cache-dir -r requirements.txt COPY Data_download.ipynb ./ -RUN jupyter execute Data_download.ipynb +COPY --chmod=755 /scripts /scripts -ENTRYPOINT "/bin/bash" +ENTRYPOINT ["/scripts/entrypoint.sh"] diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh new file mode 100644 index 0000000..519a734 --- /dev/null +++ b/scripts/entrypoint.sh @@ -0,0 +1,3 @@ +#!/bin/bash +jupyter execute Data_download.ipynb +/bin/bash