Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Divyonko
/
LivePulse
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
LivePulse
/
Dockerfile.scraper
DivYonko
first commit
11a0fc5
29 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
162 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"-m"
,
"backend.scraper"
]