12 lines
233 B
Docker
12 lines
233 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install --no-cache-dir fastapi uvicorn sqlalchemy caldav icalendar recurring-ical-events requests
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8550
|
|
|
|
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8550"]
|