Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
SuperAPIs/flash1
rkihacker
/
flash2
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7df90b5
flash2
/
Dockerfile
rkihacker
Create Dockerfile
aa258f7
verified
2 months ago
raw
Copy download link
history
blame
Safe
161 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
main.py .
ENTRYPOINT
[
"python"
,
"main.py"
]