Compare commits
2 Commits
7cdf0f8358
...
7a518c704e
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a518c704e | |||
| a84cb5620a |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -2,4 +2,4 @@ venv
|
||||
*.pyc
|
||||
__pycache__
|
||||
*.log
|
||||
data/
|
||||
data/
|
||||
27
Dockerfile
Normal file
27
Dockerfile
Normal 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
14
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user