Hugging Face
Models
Datasets
Spaces
Community
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...
4d4677f
prompting-dashboard
/
Dockerfile
Kalei
Update Dockerfile
ab9c566
verified
11 months ago
raw
Copy download link
history
blame
Safe
182 Bytes
FROM
python:
3.10
-bookworm
COPY
. /app
WORKDIR
/app
EXPOSE
10000
RUN
pip install -r requirements.txt
RUN
pip install numpy==2.0.1 pandas==2.2.2
ENTRYPOINT
[
"python"
,
"server.py"
]