Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SeyhaLite
/
aihavin
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
41245b0
aihavin
/
Dockerfile
SeyhaLite
Create Dockerfile
399220a
verified
2 months ago
raw
Copy download link
history
blame
195 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
COPY
serviceAccountKey.json .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]