SmartestHome/trash-calendar/Dockerfile

16 lines
326 B
Docker

# trash-calendar — oneshot, driven by a systemd timer (daily), same shape as
# digest-engine's own Dockerfile.
FROM python:3.11-slim
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY sync.py ./
CMD ["python", "sync.py"]