13 lines
205 B
Docker
13 lines
205 B
Docker
FROM python:3.13.3-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY watcher.py .
|
|
COPY config.yaml .
|
|
COPY templates .
|
|
|
|
CMD ["python", "-u", "watcher.py"]
|