Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
llm-wizard
/
ArxivChainLitDemo
like
9
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bdf5829
ArxivChainLitDemo
/
Dockerfile
CSAle
Correct Dockerfile
bdf5829
over 1 year ago
raw
Copy download link
history
blame
171 Bytes
FROM
3.8
.
17
-alpine3.
18
WORKDIR
/app
COPY
./requirements.txt /app/requirements.txt
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"chainlit"
,
"app.py"
,
"--port"
,
"7860"
]