diff --git a/Dockerfile b/Dockerfile index 1f323c5..6850db6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,19 @@ -FROM python:3.8 +FROM python:3.10 -COPY . . +WORKDIR /jup -WORKDIR /src COPY requirements.txt . +RUN pip install --upgrade pip && pip install jupyter -U && pip install jupyterlab && pip install -r requirements.txt -RUN apt-get update -RUN pip install -r requirements.txt +RUN mkdir -p /home/notebooks +WORKDIR /home/notebooks +COPY notebooks/ notebooks/ + +RUN mkdir /home/hume/analysis_in -p + +EXPOSE 8888 + +WORKDIR /home/notebooks/ + +ENTRYPOINT ["jupyter", "lab","--port=8888","--ip=0.0.0.0","--allow-root","--NotebookApp.token=''","--NotebookApp.password=''"] \ No newline at end of file