Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xxyy95
/
Kodd
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Kodd
/
Dockerfile
xxyy95
Upload 4 files
c2c8cfc
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
168 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
main.py .
EXPOSE
8000
CMD
[
"python"
,
"main.py"
]