Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ProzisTech
/
m-crop
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dfdaa29
m-crop
/
Dockerfile
ricardo238costa
Create Dockerfile
5796ce2
verified
8 months ago
raw
Copy download link
history
blame
Safe
204 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir --upgrade -r requirements.txt
COPY
./*.py /app/
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]