Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
imperialhtech
/
SOAPAPI
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
408be6c
SOAPAPI
/
Dockerfile
imperialhtech
ya
437bf8b
verified
11 months ago
raw
Copy download link
history
blame
Safe
219 Bytes
FROM
python:
3.10
-slim
WORKDIR
/code
COPY
app /code/app
RUN
pip install --upgrade pip
RUN
pip install -r /code/app/requirements.txt
EXPOSE
8000
CMD
[
"uvicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8000"
]