File size: 329 Bytes
6038c65
eb73da8
 
 
 
 
 
 
6038c65
 
eb73da8
d06cc99
eb73da8
d06cc99
c413560
d06cc99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM quay.io/jupyter/base-notebook:latest

COPY requirements.txt .
RUN pip install -r requirements.txt

RUN mkdir ./pages
COPY /pages ./pages

WORKDIR /home/jovyan
USER jovyan

EXPOSE 7860

HEALTHCHECK CMD curl --fail http://localhost:7860/_stcore/health

ENTRYPOINT ["solara", "run", "./pages", "--host=0.0.0.0", "--port=7860"]