Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
thejagstudio
/
procom
like
1
Sleeping
App
Files
Files
Community
9238c81
procom
/
Dockerfile
thejagstudio
Update Dockerfile
90ff71a
almost 2 years ago
raw
Copy download link
history
blame
Safe
169 Bytes
FROM
python:
3
WORKDIR
/usr/src/app
COPY
requirements.txt ./
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"./app.py"
,
"runserver"
,
"0.0.0.0:7860"
]