Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
indonesian-nlp
/
gpt2-app
like
0
Build error
App
Files
Files
Community
main
gpt2-app
/
Dockerfile
cahya
add docker file
b0e7bde
about 3 years ago
raw
Copy download link
history
blame
contribute
delete
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"
]