Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mike23415
/
private
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
private
/
Dockerfile
mike23415
Update Dockerfile
e3da27a
verified
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
192 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. /app
RUN
mkdir
-p /app/.cache &&
chmod
-R 777 /app/.cache
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]