Files
wehub-resource-sync 1dacb4cc91
lint PR / linter (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:03:53 +08:00

12 lines
190 B
Docker

FROM python:3.11
WORKDIR /app
RUN pip install streamlit python-dotenv
COPY . .
EXPOSE 8501
CMD ["streamlit", "run", "server.py", "--server.port", "8501", "--server.address", "0.0.0.0"]