groq-moa / Dockerfile
dromerosm's picture
Upload 11 files
7c24f26 verified
raw
history blame
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"]