Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Forrest99
/
code-audit-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e6e9cd7
code-audit-api
/
Dockerfile
Forrest99
Create Dockerfile
a69f5f2
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
186 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]