Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AIMaster7
/
TypeGPTProxy
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
TypeGPTProxy
/
Dockerfile
AIMaster7
Create Dockerfile
3cdb971
verified
24 days ago
raw
Copy download link
history
blame
Safe
195 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
main.py .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8000"
]