Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
indonesian-nlp
/
news-generator
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5bfe304
news-generator
/
Dockerfile
cahya
add Dockerfile
5bfe304
about 2 years ago
raw
Copy download link
history
blame
Safe
151 Bytes
FROM
python:
3.8
-slim-buster
COPY
. /app
WORKDIR
/app
RUN
pip install -r requirements.txt
EXPOSE
8501
ENTRYPOINT
[
"streamlit"
,
"run"
]
CMD
[
"app/app.py"
]