Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
NotASI
/
Groq-MOA
like
2
Sleeping
App
Files
Files
Community
main
Groq-MOA
/
Dockerfile
Liu Hong Yuan Tom
Upload 13 files
1cbf6da
verified
3 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"
,
"8080"
]