This commit is contained in:
Kar
2026-03-10 13:51:00 +05:30
parent 7cdf0f8358
commit a84cb5620a
3 changed files with 42 additions and 1 deletions

2
.gitignore vendored
View File

@@ -2,4 +2,4 @@ venv
*.pyc *.pyc
__pycache__ __pycache__
*.log *.log
data/ data/

27
Dockerfile Normal file
View File

@@ -0,0 +1,27 @@
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Create data directory
RUN mkdir -p data
# Set permissions for data directory
RUN chmod 755 data
# Default command - run the scraper
CMD ["python", "save_iana_domains.py"]

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: '3.8'
services:
iana-scraper:
build: .
container_name: iana-scraper
volumes:
- ./data:/app/data
environment:
- PYTHONUNBUFFERED=1
restart: "no"
# Uncomment and adjust if you want to limit resources
# mem_limit: 512m
# cpus: 0.5