Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Rauhan
/
AnalyticsHubTest1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
618ae26
AnalyticsHubTest1
/
Dockerfile
Rauhan
Update Dockerfile
9f48cdf
verified
12 months ago
raw
Copy download link
history
blame
Safe
186 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt ./
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
RUN
chmod
777 -R /app
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]