Files
script.service.ultimate/Dockerfile
T

106 lines
3.3 KiB
Docker
Raw Normal View History

2025-12-10 14:04:39 +01:00
# Ultimate Backend Streaming Service - Kodi addon in standalone Docker mode
2025-12-10 13:56:11 +01:00
FROM python:3.11-slim
2025-12-10 16:04:27 +01:00
# Build arguments
2025-12-10 14:04:39 +01:00
ARG USER_ID=1000
ARG GROUP_ID=1000
ARG APP_USER=ultimate
ARG APP_HOME=/app
# Environment variables
2025-12-10 13:56:11 +01:00
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
TZ=UTC \
ULTIMATE_PORT=7777 \
ULTIMATE_COUNTRY=DE \
2025-12-10 14:04:39 +01:00
ULTIMATE_DEBUG=false \
2025-12-12 20:45:04 +01:00
ULTIMATE_EPG_URL="https://example.com/epg.xml.gz" \
2026-01-20 15:45:43 +01:00
PYTHONPATH=/app/lib:/app \
2026-02-10 10:51:19 +01:00
DRM_PLUGINS_PATH=/drm-plugins \
2026-02-12 22:58:36 +01:00
M3U_PLAYLISTS_PATH=/playlists \
SCRIPTS_PROVIDERS_PATH=/playlists
2025-12-10 13:56:11 +01:00
# Install system dependencies
2025-12-10 14:04:39 +01:00
RUN apt-get update && apt-get install -y --no-install-recommends \
2025-12-10 13:56:11 +01:00
gcc \
g++ \
libxml2-dev \
libxslt-dev \
libffi-dev \
libssl-dev \
libxmlsec1-dev \
pkg-config \
curl \
2025-12-10 14:04:39 +01:00
ca-certificates \
&& apt-get clean \
2025-12-10 16:04:27 +01:00
&& rm -rf /var/lib/apt/lists/*
2025-12-10 13:56:11 +01:00
# Set working directory
2025-12-10 14:04:39 +01:00
WORKDIR ${APP_HOME}
2025-12-10 13:56:11 +01:00
2025-12-10 16:04:27 +01:00
# Copy requirements.txt first for better caching
COPY requirements.txt .
2025-12-10 13:56:11 +01:00
2025-12-10 14:04:39 +01:00
# Install Python dependencies
2025-12-10 16:04:27 +01:00
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Create user
RUN groupadd -g ${GROUP_ID} ${APP_USER} && \
useradd -u ${USER_ID} -g ${APP_USER} -m -s /bin/bash ${APP_USER}
2025-12-10 13:56:11 +01:00
2026-01-20 15:26:41 +01:00
# Create directories for new structure
2026-02-12 22:58:36 +01:00
RUN mkdir -p /config /logs /cache /drm-plugins /playlists /scripts /app/routes /app/lib && \
chown -R ${USER_ID}:${GROUP_ID} /config /logs /cache /drm-plugins /playlists /scripts /app/routes /app/lib
2026-01-20 17:20:48 +01:00
# CRITICAL FIX: Copy the lib directory containing streaming_providers
COPY --chown=${USER_ID}:${GROUP_ID} lib/ /app/lib/
2026-01-16 19:51:49 +01:00
2026-01-20 15:26:41 +01:00
# Copy application code with new structure
COPY --chown=${USER_ID}:${GROUP_ID} service.py .
2026-01-20 17:20:48 +01:00
# Copy the entire routes directory
2026-01-20 15:26:41 +01:00
COPY --chown=${USER_ID}:${GROUP_ID} routes/ /app/routes/
2025-12-10 13:56:11 +01:00
2026-01-20 17:20:48 +01:00
# Copy resources directory (for web UI)
COPY --chown=${USER_ID}:${GROUP_ID} resources/ /app/resources/
2026-01-16 19:51:49 +01:00
# Create the directory structure for DRM plugins
RUN mkdir -p /app/lib/streaming_providers/base/drm/plugins && \
chown -R ${USER_ID}:${GROUP_ID} /app/lib/streaming_providers/base/drm
2026-01-20 17:20:48 +01:00
# Verify directory structure (for debugging)
2026-01-20 15:26:41 +01:00
RUN echo "=== Directory structure ===" && \
ls -la /app && \
2026-01-20 17:20:48 +01:00
echo "--- routes ---" && \
2026-01-20 15:26:41 +01:00
ls -la /app/routes/ 2>/dev/null || echo "routes directory not found" && \
2026-01-20 17:20:48 +01:00
echo "--- lib ---" && \
ls -la /app/lib/ 2>/dev/null || echo "lib directory not found" && \
echo "--- streaming_providers ---" && \
ls -la /app/lib/streaming_providers/ 2>/dev/null || echo "streaming_providers not found"
2026-01-20 15:26:41 +01:00
# Copy updated entrypoint script
2026-01-16 19:51:49 +01:00
COPY docker-entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
2025-12-10 14:04:39 +01:00
# Switch to non-root user
USER ${USER_ID}
2025-12-10 16:04:27 +01:00
# Create default config
2025-12-10 14:04:39 +01:00
RUN if [ ! -f /config/config.json ]; then \
echo '{"default_country": "DE", "server_port": 7777, "debug_mode": false}' > /config/config.json; \
fi
2025-12-10 13:56:11 +01:00
2025-12-10 16:04:27 +01:00
# Expose port
2025-12-10 13:56:11 +01:00
EXPOSE ${ULTIMATE_PORT}
# Health check
2025-12-10 14:04:39 +01:00
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
2025-12-10 13:56:11 +01:00
CMD curl -f http://localhost:${ULTIMATE_PORT}/api/providers || exit 1
2025-12-10 16:04:27 +01:00
# Labels
2025-12-10 14:04:39 +01:00
LABEL maintainer="nirvana-7777" \
2025-12-10 16:04:27 +01:00
description="Ultimate Backend Streaming Service"
2025-12-10 14:04:39 +01:00
2026-01-16 19:51:49 +01:00
# Entrypoint with wrapper script
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["python", "service.py", "--standalone", "--config-dir", "/config"]