Compare commits

...

2 Commits

Author SHA1 Message Date
7a518c704e docker 2026-03-10 13:55:04 +05:30
a84cb5620a docker 2026-03-10 13:51:00 +05:30
3 changed files with 42 additions and 1 deletions

2
.gitignore vendored
View File

@@ -2,4 +2,4 @@ venv
*.pyc
__pycache__
*.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:
get-iana-tld-data:
build: .
container_name: get-iana-tld-data
volumes:
- ./data:/app/data
environment:
- PYTHONUNBUFFERED=1
restart: "no"
# Uncomment and adjust if you want to limit resources
# mem_limit: 512m
# cpus: 0.5