- Fixed Docker permissions issue by running as root user - Added DEBUG_MODE support with conditional Swagger docs and auto-reload - Created start.sh script for conditional Uvicorn execution - Removed verbose debug logs from WebSocket status endpoint - Added comprehensive screenshots to documentation - Enhanced help tooltip with full-screen modal design - Added theme switcher to error page - Updated documentation with local development and Docker benefits - Fixed WebSocket status display issues - Improved hotkey functionality and documentation - Added detailed project descriptions for local dev and Docker users Technical improvements: - Dockerfile: removed appuser switch, simplified permissions - docker-compose.yml: kept user: 0:0 for Docker socket access - app.py: removed debug prints, added DEBUG_MODE support - templates: enhanced UI/UX with better tooltips and themes - docs: comprehensive updates with new screenshots and descriptions
27 lines
705 B
Docker
27 lines
705 B
Docker
FROM python:3.11-slim
|
||
|
||
ENV PYTHONUNBUFFERED=1 PIP_NO_CACHE_DIR=1
|
||
WORKDIR /app
|
||
|
||
COPY requirements.txt /app/requirements.txt
|
||
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
||
COPY app.py /app/app.py
|
||
COPY templates /app/templates
|
||
|
||
# Создаем пользователя и добавляем в группу docker
|
||
RUN useradd -m appuser && \
|
||
groupadd -g 999 docker || true && \
|
||
usermod -a -G docker appuser
|
||
|
||
# Создаем директорию для снимков
|
||
RUN mkdir -p /app/snapshots && chown -R appuser:appuser /app
|
||
|
||
# Скрипт для запуска с поддержкой DEBUG_MODE
|
||
COPY start.sh /app/start.sh
|
||
RUN chmod 755 /app/start.sh
|
||
|
||
EXPOSE 9001
|
||
|
||
CMD ["/app/start.sh"]
|