Spaces:
Sleeping
Sleeping
File size: 900 Bytes
b10e9c4 a7bb3b2 b10e9c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# Dockerfile for Hugging Face Spaces
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
curl \
wget \
ffmpeg \
nodejs \
npm \
&& rm -rf /var/lib/apt/lists/*
# Install yt-dlp
RUN pip install yt-dlp
# Copy package files first for better caching
COPY package*.json ./
# Install Node.js dependencies
RUN npm install
# Copy application files
COPY . .
# Create downloads directory with proper permissions
RUN mkdir -p downloads && chmod 777 downloads
# Create user for security
RUN useradd -m -u 1000 appuser && chown -R appuser:appuser /app
# Switch to non-root user
USER appuser
# Expose port 7860 (Hugging Face Spaces default)
EXPOSE 7860
# Set environment variable for Hugging Face
ENV PORT=7860
# Start the application
CMD ["npm", "start"]
|