mirror of
https://github.com/skoelle/calender_sync.git
synced 2026-09-17 18:20:24 +00:00
15 lines
211 B
Docker
15 lines
211 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY LICENSE .
|
|
COPY sync.py .
|
|
COPY api/ ./api/
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
CMD ["python", "sync.py"]
|