Spaces:
Sleeping
Sleeping
FROM python:3.9-slim | |
WORKDIR /app | |
# Install required system packages | |
RUN apt-get update && apt-get install -y ffmpeg | |
# Create a non-root user | |
RUN useradd -m -u 1000 appuser | |
# Copy requirements and install Python packages | |
COPY requirements.txt . | |
RUN pip install -r requirements.txt | |
# Copy the application files | |
COPY . . | |
# Set permissions for all files and directories | |
RUN find /app -type f -exec chmod 644 {} \; && \ | |
find /app -type d -exec chmod 755 {} \; && \ | |
chmod 644 www.youtube.com_cookies.txt && \ | |
chown -R appuser:appuser /app | |
# Switch to non-root user | |
USER appuser | |
EXPOSE 7860 | |
CMD ["python", "srv.py"] |