neural-beatbox / Dockerfile
AKMESSI's picture
Upload 5 files
563e6f7 verified
raw
history blame contribute delete
207 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]