File size: 323 Bytes
dfb1910
df993a2
0f273eb
df993a2
d72692c
0f273eb
 
df993a2
dfb1910
df993a2
dfb1910
df993a2
50e7ef4
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.9

WORKDIR /app

COPY requirements.txt .

COPY sentimentappstreamlit.py .

RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

COPY . .

CMD ["sentimentappstreamlit", "serve", "/code/app.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "ghylb-Sentiment_app.hf.space"]