Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dromerosm
/
groq-moa
like
1
Sleeping
App
Files
Files
Community
main
groq-moa
/
Dockerfile
dromerosm
Update Dockerfile
f61b49f
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
173 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt ./
COPY
. /app/
RUN
pip install -r requirements.txt
CMD
[
"streamlit"
,
"run"
,
"app.py"
,
"--server.port"
,
"8051"
]