Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TypeGPT
/
bbox
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ba8a89f
bbox
/
Dockerfile
dfa32412
Create Dockerfile
ba8a89f
verified
about 2 months ago
raw
Copy download link
history
blame
175 Bytes
FROM
python:
3.9
-slim
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. /code/
CMD
[
"python"
,
"app.py"
]