Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ndhue
/
test
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test
/
Dockerfile
ndhue
initial commit
107c489
4 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
175 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
RUN
pip install llama-cpp-python
COPY
. .
CMD
[
"python"
,
"app.py"
]