Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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=''"]