Groq-MOA / Dockerfile
Liu Hong Yuan Tom
Upload 13 files
1cbf6da verified
raw
history blame contribute delete
No virus
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"]