Sentiment_App / Dockerfile
Gilbert Botchway
editing docker#
a11ff8d
raw
history blame
311 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
COPY sentimentappstreamlit.py .
RUN pip3 install --upgrade pip
RUN pip3 install -r requirements.txt
CMD ["python","sentimentappstreamlit.py", "serve", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "ghylb-Sentiment_app.hf.space"]