Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
macrocosm-os
/
prompting-dashboard
like
0
Running
on
CPU Upgrade
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7732b9b
prompting-dashboard
/
Dockerfile
Kalei
Update Dockerfile
ab9c566
verified
7 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"
]