Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jebin2
/
Paper
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Paper
/
Dockerfile
jebin2
py version cahnge
3a90343
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
146 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"main.py"
]