OpenAirAI / Dockerfile
RootLinux21's picture
Update Dockerfile
43c0ae6 verified
Raw
History Blame
202 Bytes
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["streamlit", "run", "app.py", "--server.port=7890", "--server.address=0.0.0.0"]