Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thunder-lord
/
api
like
0
Runtime error
App
Files
Files
Community
main
api
/
Dockerfile
Kastg
Update Dockerfile
6e6e0cf
verified
10 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
138 Bytes
FROM
python:
3.11
-slim
WORKDIR
$HOME
/app
COPY
. .
RUN
pip install -r requirements.txt
VOLUME
/data
EXPOSE
23333
CMD
[
"python"
,
"-m"
,
"app"
]