add database

This commit is contained in:
2026-03-26 12:42:59 +03:00
parent 20531d1029
commit a6c6f061ce
6 changed files with 117 additions and 58 deletions

View File

@@ -5,9 +5,6 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY bot.py weather.py ./
RUN useradd -m botuser
USER botuser
COPY *.py ./
CMD ["python", "bot.py"]