14 lines
237 B
Docker
14 lines
237 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy crawler service
|
|
COPY crawler_service.py .
|
|
|
|
# Run crawler
|
|
CMD ["python", "crawler_service.py"]
|