Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
entorr
/
superkart
like
0
Runtime error
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
refs/pr/4
superkart
/
Dockerfile
entorr
Upload backend files for SuperKart
8d468c7
verified
4 months ago
raw
Copy download link
history
blame
Safe
160 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]