Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AZLABS
/
Drive
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
04ec8c4
Drive
/
Dockerfile
thejagstudio
Update Dockerfile
04ec8c4
verified
8 months ago
raw
Copy download link
history
blame
Safe
143 Bytes
FROM
python:
3
WORKDIR
/usr/src/app
COPY
requirements.txt ./
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"./main.py"
]