Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ka1kuk
/
Linance
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3ca9640
Linance
/
Dockerfile
ka1kuk
Update Dockerfile
3ca9640
over 1 year ago
raw
Copy download link
history
blame
Safe
172 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
RUN
chmod
777 /app/lindb.db
CMD
[
"python"
,
"app.py"
]