Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
macrocosm-os
/
prompting-dashboard
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
134ac54
prompting-dashboard
/
Dockerfile
Kalei
Remove Forcing numpy and pandas
134ac54
verified
7 months ago
raw
Copy download link
history
blame
Safe
139 Bytes
FROM
python:
3.10
-bookworm
COPY
. /app
WORKDIR
/app
EXPOSE
10000
RUN
pip install -r requirements.txt
ENTRYPOINT
[
"python"
,
"server.py"
]