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...
3ad5352
ArxivChainLitDemo
/
Dockerfile
CSAle
Correct Dockerfile
3ad5352
over 1 year ago
raw
Copy download link
history
blame
166 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"chainlit"
,
"app.py"
,
"--port"
,
"7860"
]