Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
lsacy
/
menduChat
like
0
Runtime error
App
Files
Files
Community
09129f6
menduChat
/
Dockerfile
lsacy
test
121a1b0
almost 2 years ago
raw
Copy download link
history
blame
Safe
226 Bytes
# use bitnami pytorch image
FROM
registry.docker.com/bitnami/pytorch:1.8.1
ENV
PYTHONIOENCODING
=utf-8
COPY requirements.txt requirements.txt
RUN
pip install -r requirements.txt
CMD streamlit
run
streamlit_app.py --port 8501