first commit
This commit is contained in:
16
Dockerfile
Normal file
16
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user