Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vwxyzarii
/
ARII
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ARII
/
Dockerfile
vwxyzarii
Update Dockerfile
9d981ae
verified
22 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
193 Bytes
FROM python:3.10
WORKDIR /
app
COPY
requirements.txt .
RUN
pip install --
no
-cache-
dir
--upgrade pip && \
pip install --
no
-cache-
dir
-r requirements.txt
COPY
. .
CMD [
"python"
,
"app.py"
]