first commit

This commit is contained in:
2026-01-09 13:50:10 +01:00
parent 2ab7414e2b
commit b860c8dc6d
6 changed files with 892 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install dependencies
RUN pip install --no-cache-dir requests python-dateutil
# Copy the script
COPY nvd_telegram_notifier.py .
# Create directories for persistent data
RUN mkdir -p /app/data
# Run the script
CMD ["python", "-u", "nvd_telegram_notifier.py"]