File size: 329 Bytes
1976937
0e4bbc9
 
 
 
 
 
 
1976937
 
0e4bbc9
1976937
0e4bbc9
1976937
0e4bbc9
1976937
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"]