Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
muryshev
/
commandr-api-local
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
74d5380
commandr-api-local
/
Dockerfile
muryshev
Update Dockerfile
74d5380
verified
about 1 year ago
raw
Copy download link
history
blame
163 Bytes
FROM
python:
3.10
-buster
WORKDIR
/app/commandr-api-local
COPY
. .
RUN
pip3 install --upgrade pip
RUN
pip3 install -r requirements.txt
CMD
[
"python"
,
"app.py"
]