Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Rivalcoder
/
pathway
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
aeb70ab
pathway
/
Dockerfile
Rivalcoder
Edit
aeb70ab
14 days ago
raw
Copy download link
history
blame
Safe
171 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]