textblob_sentiment / Dockerfile
pakkinlau's picture
adding initial files
85e0481
raw
history blame contribute delete
140 Bytes
FROM huggingface/transformers-pytorch-cpu
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["streamlit", "run", "app.py"]