CoolFace
Apppublic

Mohiit007/BrainCache-OrbitalScan

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile18 linesDownload Raw Back to root
1# Base image2FROM python:3.103 4# Set working directory5WORKDIR /app6 7# Copy files8COPY . /app9 10# Install dependencies11RUN pip install --no-cache-dir -r requirements.txt12 13# Expose Streamlit port14EXPOSE 786015 16# Run Streamlit17CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]18