File size: 359 Bytes
82b27f7
ab6a63c
 
 
 
771bb92
ab6a63c
 
 
771bb92
ab6a63c
 
57e2260
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.11

WORKDIR /code

RUN python3 -m pip install --no-cache-dir --upgrade pip
RUN python3 -m pip install --no-cache-dir --upgrade -r requirements.txt

COPY . .

CMD ["panel", "serve", "app.py", "--address", "0.0.0.0", "--port", "7860",  "--allow-websocket-origin", "*", "--num-procs", "2", "--index", "app"]

RUN mkdir /.cache
RUN chmod 777 /.cache