iOS: - Subtle floating feedback button (bottom-left, speech bubble icon) - Quick sheet: type → send → auto-creates Gitea issue - Shows checkmark on success, auto-dismisses - No friction — tap, type, done Gateway: - POST /api/feedback endpoint - Auto-labels: bug/feature/enhancement + ios/web + fitness/brain/reader/podcasts - Keyword detection for label assignment - Creates issue via Gitea API with user name and source Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
630 B
Docker
13 lines
630 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
RUN pip install --no-cache-dir bcrypt
|
|
RUN adduser --disabled-password --no-create-home appuser
|
|
RUN mkdir -p /app/data && chown -R appuser /app/data
|
|
COPY --chown=appuser server.py config.py database.py sessions.py proxy.py responses.py auth.py dashboard.py command.py assistant.py feedback.py ./
|
|
COPY --chown=appuser integrations/ ./integrations/
|
|
EXPOSE 8100
|
|
ENV PYTHONUNBUFFERED=1
|
|
HEALTHCHECK --interval=30s --timeout=5s --retries=3 CMD python3 -c "import urllib.request; urllib.request.urlopen('http://localhost:8100/api/health', timeout=3)" || exit 1
|
|
USER appuser
|
|
CMD ["python3", "server.py"]
|