Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cINAWGD
/
yun4
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f011119
yun4
/
Dockerfile
tuna2134
fix: dockerfile
fd86fa0
about 2 years ago
raw
Copy download link
history
blame
128 Bytes
FROM
python:
3
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"python3"
,
"main.py"
]