Sentiment_App / Dockerfile
Gilbert Botchway
modification
d72692c
raw
history blame
323 Bytes
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"]