CoolFace
Apppublic

amadinm/MicrogridDummy

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
Dockerfile14 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5COPY . /app6 7RUN pip install --no-cache-dir -r requirements.txt8 9# Expose the main web port that Hugging Face will proxy (typically 7860)10EXPOSE 786011 12CMD bash -c "uvicorn backend.app:app --host 0.0.0.0 --port 8502 & \13             streamlit run ui/streamlit_app.py --server.port 7860 --server.address 0.0.0.0"14