Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Tom-Dev-space
/
code_graph
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d67a893
code_graph
/
Dockerfile
tlarsson
Create Dockerfile
3be7afd
verified
10 months ago
raw
Copy download link
history
blame
Safe
140 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]