File size: 551 Bytes
a5e48fd
4194d71
a5e48fd
4194d71
 
 
4a7f02e
4194d71
 
a5e48fd
4194d71
a5e48fd
4194d71
 
 
 
4a7f02e
 
b41448d
4194d71
b41448d
4194d71
b41448d
4194d71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM python:3.11-slim

WORKDIR /app

RUN apt-get update && apt-get install -y \
    build-essential \
    gcc \
    && rm -rf /var/lib/apt/lists/*

COPY requirements.txt .

RUN pip install --no-cache-dir -r requirements.txt \
    "uvicorn>=0.14.0" \
    "websockets>=10.4" \
    spaces

RUN pip install --no-cache-dir \
    https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.1/en_core_web_sm-3.7.1-py3-none-any.whl

COPY . .

EXPOSE 7860

CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]