auto-sync: 2026-04-19 18:30:01

This commit is contained in:
Stream
2026-04-19 18:30:01 +03:00
parent 07af49ee60
commit 6de2909f2a
5 changed files with 184 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
FROM python:3.11-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
libpq-dev gcc python3-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
CMD ["python", "-u", "main.py"]