Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tejani
/
FaceMask
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
FaceMask
/
Dockerfile
tejani
Upload 115 files
79eeb88
verified
13 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
176 Bytes
FROM
python:
3.13
.
0
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
8000
CMD
[
"python"
,
"src/app.py"
,
"--api"
]