Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
realrohilbansal
/
LegalAlly
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
LegalAlly
/
Dockerfile
Rohil Bansal
Initial Commit. LegalAlly.
96dad0a
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
166 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"streamlit"
,
"run"
,
"src/app/main.py"
]