Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ManTea
/
CaculatorD
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
91e4f36
CaculatorD
/
Dockerfile
ManTea
.
91e4f36
11 months ago
raw
Copy download link
history
blame
Safe
158 Bytes
FROM
python:
3.11
.
10
-alpine3.
20
WORKDIR
/app
COPY
. .
RUN
pip install -r requirements.txt
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"6868"
]