Files
calender_sync/Dockerfile
T
2026-08-01 15:06:34 +02:00

13 lines
179 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY sync.py .
ENV PYTHONUNBUFFERED=1
CMD ["python", "sync.py"]