Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thejagstudio
/
101
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c3a619e
101
/
Dockerfile
thejagstudio
Update Dockerfile
84a8179
verified
5 months ago
raw
Copy download link
history
blame
Safe
172 Bytes
FROM
python:
3
WORKDIR
/usr/src/app
COPY
requirements.txt ./
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"./manage.py"
,
"runserver"
,
"0.0.0.0:7860"
]