Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
d88878
/
test
like
0
Building
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6b2c53b
test
/
Dockerfile
SkyCloud7
Upload 3 files
6b2c53b
verified
5 months ago
raw
Copy download link
history
blame
Safe
155 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]