feat: Init

This commit is contained in:
zin
2026-06-02 22:39:11 +00:00
parent 875616730b
commit 3850b15053
7 changed files with 210 additions and 120 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
# Только легкие зависимости для отображения интерфейса
RUN pip install --no-cache-dir streamlit==1.32.0 requests pandas pillow
COPY src/ /app/src/
EXPOSE 8080
CMD ["streamlit", "run", "src/main.py", "--server.port", "8080", "--server.address", "0.0.0.0"]