- matrix-gateway: POST /internal/matrix/presence/online endpoint - usePresenceHeartbeat hook with activity tracking - Auto away after 5 min inactivity - Offline on page close/visibility change - Integrated in MatrixChatRoom component
18 lines
251 B
Docker
18 lines
251 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# App files
|
|
COPY . .
|
|
|
|
# Expose port
|
|
EXPOSE 7003
|
|
|
|
# Run
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7003"]
|
|
|